Skip to content

Commit

Permalink
Merge pull request #494 from emeroad/#320_change_deprecated_HTablePoo…
Browse files Browse the repository at this point in the history
…l_api_to_HConnection

#320 fix docker, quickstart hbase option
  • Loading branch information
emeroad committed May 29, 2015
2 parents 4751767 + 806d463 commit 0ed4233
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 8 deletions.
21 changes: 20 additions & 1 deletion docker/pinpoint-collector/hbase.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
hbase.client.host=HBASE_HOST
hbase.client.port=HBASE_PORT
hbase.htable.threads.max=4

# hbase timeout option==================================================================================
# hbase default:true
hbase.ipc.client.tcpnodelay=true
# hbase default:60000
hbase.rpc.timeout=10000
# hbase default:Integer.MAX_VALUE
hbase.client.operation.timeout=10000

# hbase socket read timeout. default: 200000
hbase.ipc.client.socket.timeout.read=20000
# socket write timeout. hbase default: 600000
hbase.ipc.client.socket.timeout.write=60000

# ==================================================================================
# hbase client thread pool option
hbase.client.thread.max=128
hbase.client.threadPool.queueSize=5120
# prestartAllCoreThreads
hbase.client.threadPool.prestart=false
2 changes: 0 additions & 2 deletions docker/pinpoint-collector/pinpoint-collector.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
hbase.hTablePoolSize=1024

# tcp listen ip
collector.tcpListenIp=0.0.0.0
collector.tcpListenPort=COLLECTOR_TCP_PORT
Expand Down
21 changes: 20 additions & 1 deletion docker/pinpoint-web/hbase.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
hbase.client.host=HBASE_HOST
hbase.client.port=HBASE_PORT
hbase.htable.threads.max=4

# hbase timeout option==================================================================================
# hbase default:true
hbase.ipc.client.tcpnodelay=true
# hbase default:60000
hbase.rpc.timeout=10000
# hbase default:Integer.MAX_VALUE
hbase.client.operation.timeout=10000

# hbase socket read timeout. default: 200000
hbase.ipc.client.socket.timeout.read=20000
# socket write timeout. hbase default: 600000
hbase.ipc.client.socket.timeout.write=60000

# ==================================================================================
# hbase client thread pool option
hbase.client.thread.max=128
hbase.client.threadPool.queueSize=5120
# prestartAllCoreThreads
hbase.client.threadPool.prestart=false
21 changes: 20 additions & 1 deletion quickstart/collector/src/main/resources/hbase.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
# example
hbase.client.host=localhost
hbase.client.port=2181
hbase.htable.threads.max=4

# hbase timeout option==================================================================================
# hbase default:true
hbase.ipc.client.tcpnodelay=true
# hbase default:60000
hbase.rpc.timeout=10000
# hbase default:Integer.MAX_VALUE
hbase.client.operation.timeout=10000

# hbase socket read timeout. default: 200000
hbase.ipc.client.socket.timeout.read=20000
# socket write timeout. hbase default: 600000
hbase.ipc.client.socket.timeout.write=60000

# ==================================================================================
# hbase client thread pool option
hbase.client.thread.max=128
hbase.client.threadPool.queueSize=5120
# prestartAllCoreThreads
hbase.client.threadPool.prestart=false
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
hbase.hTablePoolSize=1024

# tcp listen ip
collector.tcpListenIp=0.0.0.0
collector.tcpListenPort=29994
Expand Down
21 changes: 20 additions & 1 deletion quickstart/web/src/main/resources/hbase.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
# example
hbase.client.host=localhost
hbase.client.port=2181
hbase.htable.threads.max=4

# hbase timeout option==================================================================================
# hbase default:true
hbase.ipc.client.tcpnodelay=true
# hbase default:60000
hbase.rpc.timeout=10000
# hbase default:Integer.MAX_VALUE
hbase.client.operation.timeout=10000

# hbase socket read timeout. default: 200000
hbase.ipc.client.socket.timeout.read=20000
# socket write timeout. hbase default: 600000
hbase.ipc.client.socket.timeout.write=60000

# ==================================================================================
# hbase client thread pool option
hbase.client.thread.max=128
hbase.client.threadPool.queueSize=5120
# prestartAllCoreThreads
hbase.client.threadPool.prestart=false

0 comments on commit 0ed4233

Please sign in to comment.