HBASE-1587 Update ganglia config and doc to account for ganglia 3.1 and hadoop-4675
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@788837 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a65c38840f
commit
888aeb06cf
|
@ -415,6 +415,8 @@ Release 0.20.0 - Unreleased
|
||||||
HBASE-1584 Put add methods should return this for ease of use (Be
|
HBASE-1584 Put add methods should return this for ease of use (Be
|
||||||
consistant with Get) (Clint Morgan via Stack)
|
consistant with Get) (Clint Morgan via Stack)
|
||||||
HBASE-1581 Run major compaction on .META. when table is dropped or truncated
|
HBASE-1581 Run major compaction on .META. when table is dropped or truncated
|
||||||
|
HBASE-1587 Update ganglia config and doc to account for ganglia 3.1 and
|
||||||
|
hadoop-4675
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
HBASE-1412 Change values for delete column and column family in KeyValue
|
HBASE-1412 Change values for delete column and column family in KeyValue
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
# See http://wiki.apache.org/hadoop/GangliaMetrics
|
# See http://wiki.apache.org/hadoop/GangliaMetrics
|
||||||
|
# Make sure you know whether you are using ganglia 3.0 or 3.1.
|
||||||
|
# If 3.1, you will have to patch your hadoop instance with HADOOP-4675
|
||||||
# And, yes, this file is named hadoop-metrics.properties rather than
|
# And, yes, this file is named hadoop-metrics.properties rather than
|
||||||
# hbase-metrics.properties because we're leveraging the hadoop metrics
|
# hbase-metrics.properties because we're leveraging the hadoop metrics
|
||||||
# package and hadoop-metrics.properties is an hardcoded-name, at least
|
# package and hadoop-metrics.properties is an hardcoded-name, at least
|
||||||
# for the moment.
|
# for the moment.
|
||||||
|
#
|
||||||
|
# See also http://hadoop.apache.org/hbase/docs/current/metrics.html
|
||||||
|
|
||||||
# Configuration of the "hbase" context for null
|
# Configuration of the "hbase" context for null
|
||||||
hbase.class=org.apache.hadoop.metrics.spi.NullContext
|
hbase.class=org.apache.hadoop.metrics.spi.NullContext
|
||||||
|
@ -13,7 +17,9 @@ hbase.class=org.apache.hadoop.metrics.spi.NullContext
|
||||||
# hbase.fileName=/tmp/metrics_hbase.log
|
# hbase.fileName=/tmp/metrics_hbase.log
|
||||||
|
|
||||||
# Configuration of the "hbase" context for ganglia
|
# Configuration of the "hbase" context for ganglia
|
||||||
|
# Pick one: Ganglia 3.0 (former) or Ganglia 3.1 (latter)
|
||||||
# hbase.class=org.apache.hadoop.metrics.ganglia.GangliaContext
|
# hbase.class=org.apache.hadoop.metrics.ganglia.GangliaContext
|
||||||
|
# hbase.class=org.apache.hadoop.metrics.ganglia.GangliaContext31
|
||||||
# hbase.period=10
|
# hbase.period=10
|
||||||
# hbase.servers=GMETADHOST_IP:8649
|
# hbase.servers=GMETADHOST_IP:8649
|
||||||
|
|
||||||
|
@ -26,7 +32,9 @@ jvm.class=org.apache.hadoop.metrics.spi.NullContext
|
||||||
# jvm.fileName=/tmp/metrics_jvm.log
|
# jvm.fileName=/tmp/metrics_jvm.log
|
||||||
|
|
||||||
# Configuration of the "jvm" context for ganglia
|
# Configuration of the "jvm" context for ganglia
|
||||||
|
# Pick one: Ganglia 3.0 (former) or Ganglia 3.1 (latter)
|
||||||
# jvm.class=org.apache.hadoop.metrics.ganglia.GangliaContext
|
# jvm.class=org.apache.hadoop.metrics.ganglia.GangliaContext
|
||||||
|
# jvm.class=org.apache.hadoop.metrics.ganglia.GangliaContext31
|
||||||
# jvm.period=10
|
# jvm.period=10
|
||||||
# jvm.servers=GMETADHOST_IP:8649
|
# jvm.servers=GMETADHOST_IP:8649
|
||||||
|
|
||||||
|
@ -39,6 +47,8 @@ rpc.class=org.apache.hadoop.metrics.spi.NullContext
|
||||||
# rpc.fileName=/tmp/metrics_rpc.log
|
# rpc.fileName=/tmp/metrics_rpc.log
|
||||||
|
|
||||||
# Configuration of the "rpc" context for ganglia
|
# Configuration of the "rpc" context for ganglia
|
||||||
|
# Pick one: Ganglia 3.0 (former) or Ganglia 3.1 (latter)
|
||||||
# rpc.class=org.apache.hadoop.metrics.ganglia.GangliaContext
|
# rpc.class=org.apache.hadoop.metrics.ganglia.GangliaContext
|
||||||
|
# rpc.class=org.apache.hadoop.metrics.ganglia.GangliaContext31
|
||||||
# rpc.period=10
|
# rpc.period=10
|
||||||
# rpc.servers=GMETADHOST_IP:8649
|
# rpc.servers=GMETADHOST_IP:8649
|
||||||
|
|
Loading…
Reference in New Issue