Skip to content

Commit

Permalink
Merge pull request #1698 from koo-taejin/#1683
Browse files Browse the repository at this point in the history
Support the async put API provided by HTableMultiplexer to improve th…
  • Loading branch information
koo-taejin committed Apr 19, 2016
2 parents a5e4560 + 5684dc6 commit 968d9c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions collector/src/main/resources/applicationContext-hbase.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
<prop key="hbase.ipc.client.socket.timeout.write">${hbase.ipc.client.socket.timeout.write}</prop>

<!-- hbase async put operation. -->
<prop key="hbase.client.async.enable">${hbase.client.async.enable?false}</prop>
<prop key="hbase.client.async.in.queuesize">${hbase.client.async.in.queuesize?10000}</prop>
<prop key="hbase.tablemultiplexer.flush.period.ms">${hbase.client.async.flush.period.ms?100}</prop>
<prop key="hbase.client.max.retries.in.queue">${hbase.client.async.max.retries.in.queue?10}</prop>
<prop key="hbase.client.async.enable">${hbase.client.async.enable:false}</prop>
<prop key="hbase.client.async.in.queuesize">${hbase.client.async.in.queuesize:10000}</prop>
<prop key="hbase.tablemultiplexer.flush.period.ms">${hbase.client.async.flush.period.ms:100}</prop>
<prop key="hbase.client.max.retries.in.queue">${hbase.client.async.max.retries.in.queue:10}</prop>
</props>
</property>
</bean>
Expand Down
8 changes: 4 additions & 4 deletions web/src/main/resources/applicationContext-hbase.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
<prop key="hbase.ipc.client.socket.timeout.write">${hbase.ipc.client.socket.timeout.write}</prop>

<!-- hbase async put operation. -->
<prop key="hbase.client.async.enable">${hbase.client.async.enable?false}</prop>
<prop key="hbase.client.async.in.queuesize">${hbase.client.async.in.queuesize?10000}</prop>
<prop key="hbase.tablemultiplexer.flush.period.ms">${hbase.client.async.flush.period.ms?100}</prop>
<prop key="hbase.client.max.retries.in.queue">${hbase.client.async.max.retries.in.queue?10}</prop>
<prop key="hbase.client.async.enable">${hbase.client.async.enable:false}</prop>
<prop key="hbase.client.async.in.queuesize">${hbase.client.async.in.queuesize:10000}</prop>
<prop key="hbase.tablemultiplexer.flush.period.ms">${hbase.client.async.flush.period.ms:100}</prop>
<prop key="hbase.client.max.retries.in.queue">${hbase.client.async.max.retries.in.queue:10}</prop>
</props>
</property>
</bean>
Expand Down

0 comments on commit 968d9c5

Please # to comment.