Repository: ambari Updated Branches: refs/heads/trunk 46ef6df48 -> 2831bdb3f
AMBARI-11517. HDPWIN 2.2 HBase enhanced tab contains widgets without initial data. Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/2831bdb3 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/2831bdb3 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/2831bdb3 Branch: refs/heads/trunk Commit: 2831bdb3f90104b12c795ebb06057c0ccb37f154 Parents: 46ef6df Author: Srimanth Gunturi <[email protected]> Authored: Thu May 28 15:24:01 2015 -0700 Committer: Srimanth Gunturi <[email protected]> Committed: Fri May 29 09:22:01 2015 -0700 ---------------------------------------------------------------------- .../services/HBASE/configuration/hbase-site.xml | 1 + .../services/HBASE/configuration/hbase-site.xml | 28 ++++++++++++++++++-- 2 files changed, 27 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/2831bdb3/ambari-server/src/main/resources/stacks/HDP/2.2/services/HBASE/configuration/hbase-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.2/services/HBASE/configuration/hbase-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.2/services/HBASE/configuration/hbase-site.xml index b46ccaa..63234f4 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.2/services/HBASE/configuration/hbase-site.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.2/services/HBASE/configuration/hbase-site.xml @@ -66,6 +66,7 @@ resultant flush files take a long time to compact or split, or worse, we OOME. </description> + <display-name>HBase Region Block Multiplier</display-name> <value-attributes> <type>value-list</type> <entries> http://git-wip-us.apache.org/repos/asf/ambari/blob/2831bdb3/ambari-server/src/main/resources/stacks/HDPWIN/2.2/services/HBASE/configuration/hbase-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDPWIN/2.2/services/HBASE/configuration/hbase-site.xml b/ambari-server/src/main/resources/stacks/HDPWIN/2.2/services/HBASE/configuration/hbase-site.xml index bd09fd5..3de0397 100644 --- a/ambari-server/src/main/resources/stacks/HDPWIN/2.2/services/HBASE/configuration/hbase-site.xml +++ b/ambari-server/src/main/resources/stacks/HDPWIN/2.2/services/HBASE/configuration/hbase-site.xml @@ -32,14 +32,22 @@ <property> <name>hbase.hregion.majorcompaction</name> <value>604800000</value> - <description>Time between major compactions, expressed in milliseconds. Set to 0 to disable + <description> + Time between major compactions, expressed in milliseconds. Set to 0 to disable time-based automatic major compactions. User-requested and size-based major compactions will still run. This value is multiplied by hbase.hregion.majorcompaction.jitter to cause compaction to start at a somewhat-random time during a given window of time. The default value is 7 days, expressed in milliseconds. If major compactions are causing disruption in your environment, you can configure them to run at off-peak times for your deployment, or disable time-based major compactions by setting this parameter to 0, and run major compactions in a - cron job or by another external mechanism.</description> + cron job or by another external mechanism. + </description> + <value-attributes> + <type>int</type> + <minimum>0</minimum> + <maximum>2592000000</maximum> + <unit>milliseconds</unit> + </value-attributes> </property> <property> <name>hbase.hregion.majorcompaction.jitter</name> @@ -60,6 +68,22 @@ resultant flush files take a long time to compact or split, or worse, we OOME. </description> + <display-name>HBase Region Block Multiplier</display-name> + <value-attributes> + <type>value-list</type> + <entries> + <entry> + <value>2</value> + </entry> + <entry> + <value>4</value> + </entry> + <entry> + <value>8</value> + </entry> + </entries> + <selection-cardinality>1</selection-cardinality> + </value-attributes> </property> <property> <name>hbase.bucketcache.ioengine</name>
