Repository: ambari Updated Branches: refs/heads/branch-2.5 e5152eacc -> b094cccde
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/b094cccd Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/b094cccd Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/b094cccd Branch: refs/heads/branch-2.5 Commit: b094cccde94ea875767ee50ca05ddc5027923288 Parents: e5152ea Author: Alejandro Fernandez <[email protected]> Authored: Wed Jan 18 13:42:47 2017 -0800 Committer: Alejandro Fernandez <[email protected]> Committed: Wed Jan 18 13:42:47 2017 -0800 ---------------------------------------------------------------------- .../services/HBASE/configuration/hbase-env.xml | 37 ++++++++++++++++++++ 1 file changed, 37 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/b094cccd/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>
