Skip to content

Commit

Permalink
Support the async put API provided by HTableMultiplexer to improve th…
Browse files Browse the repository at this point in the history
…e write throughput in collector. #1683

 - set default value
  • Loading branch information
koo-taejin committed Apr 19, 2016
1 parent a5e4560 commit 5684dc6
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 5684dc6

Please # to comment.