HBASE-2352 Small values for hbase.client.retries.number and ipc.client.connect.max.retries breaks long ops in hbase shell
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@949521 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9f7ecc2b02
commit
e9da90e109
|
@ -1026,6 +1026,9 @@ Release 0.20.0 - Tue Sep 8 12:53:05 PDT 2009
|
||||||
(Mathias Herberts via Stack)
|
(Mathias Herberts via Stack)
|
||||||
HBASE-1804 Puts are permitted (and stored) when including an appended colon
|
HBASE-1804 Puts are permitted (and stored) when including an appended colon
|
||||||
HBASE-1715 Compaction failure in ScanWildcardColumnTracker.checkColumn
|
HBASE-1715 Compaction failure in ScanWildcardColumnTracker.checkColumn
|
||||||
|
HBASE-2352 Small values for hbase.client.retries.number and
|
||||||
|
ipc.client.connect.max.retries breaks long ops in hbase shell
|
||||||
|
(Alexey Kovyrin via Stack)
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
HBASE-1089 Add count of regions on filesystem to master UI; add percentage
|
||||||
|
|
|
@ -36,7 +36,7 @@ module Hbase
|
||||||
else
|
else
|
||||||
self.configuration = org.apache.hadoop.hbase.HBaseConfiguration.create
|
self.configuration = org.apache.hadoop.hbase.HBaseConfiguration.create
|
||||||
# Turn off retries in hbase and ipc. Human doesn't want to wait on N retries.
|
# Turn off retries in hbase and ipc. Human doesn't want to wait on N retries.
|
||||||
configuration.setInt("hbase.client.retries.number", 1)
|
configuration.setInt("hbase.client.retries.number", 7)
|
||||||
configuration.setInt("ipc.client.connect.max.retries", 3)
|
configuration.setInt("ipc.client.connect.max.retries", 3)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue