Repository: ambari Updated Branches: refs/heads/trunk 52c86109c -> c27fdbc22
AMBARI-19573. Increase max limit for Xmn parameter in hbase-env for HDP 2.6 (Ted Yu via alejandro) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/c27fdbc2 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/c27fdbc2 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/c27fdbc2 Branch: refs/heads/trunk Commit: c27fdbc22ed021fc336328960f9215eb53cbb76c Parents: 52c8610 Author: Alejandro Fernandez <[email protected]> Authored: Wed Jan 18 13:40:42 2017 -0800 Committer: Alejandro Fernandez <[email protected]> Committed: Wed Jan 18 13:40:42 2017 -0800 ---------------------------------------------------------------------- .../services/HBASE/configuration/hbase-env.xml | 37 ++++++++++++++++++++ 1 file changed, 37 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/c27fdbc2/ambari-server/src/main/resources/stacks/HDP/2.6/services/HBASE/configuration/hbase-env.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.6/services/HBASE/configuration/hbase-env.xml b/ambari-server/src/main/resources/stacks/HDP/2.6/services/HBASE/configuration/hbase-env.xml new file mode 100644 index 0000000..9afaecb --- /dev/null +++ b/ambari-server/src/main/resources/stacks/HDP/2.6/services/HBASE/configuration/hbase-env.xml @@ -0,0 +1,37 @@ +<?xml version="1.0"?> +<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> +<!-- +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +--> +<configuration supports_adding_forbidden="true"> + <property> + <name>hbase_regionserver_xmn_max</name> + <value>4000</value> + <description> +Sets the upper bound on HBase RegionServers' young generation size. +This value is used in case the young generation size (-Xmn) calculated based on the max heapsize (hbase_regionserver_heapsize) +and the -Xmn ratio (hbase_regionserver_xmn_ratio) exceeds this value. + </description> + <display-name>RegionServers maximum value for -Xmn</display-name> + <value-attributes> + <unit>MB</unit> + </value-attributes> + <on-ambari-upgrade add="false"/> + </property> +</configuration>
