AMBARI-20031. Adopt optimal default config values for HBase (Ted Yu via smohanty)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/6d82e215 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/6d82e215 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/6d82e215 Branch: refs/heads/branch-feature-AMBARI-12556 Commit: 6d82e215e22f41012156dc610ee07a10996a34f7 Parents: 4aa0f62 Author: Sumit Mohanty <[email protected]> Authored: Wed Feb 15 21:49:00 2017 -0800 Committer: Sumit Mohanty <[email protected]> Committed: Wed Feb 15 21:53:46 2017 -0800 ---------------------------------------------------------------------- .../services/HBASE/configuration/hbase-site.xml | 43 ++++++++++++++++++++ 1 file changed, 43 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/6d82e215/ambari-server/src/main/resources/stacks/HDP/2.6/services/HBASE/configuration/hbase-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.6/services/HBASE/configuration/hbase-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.6/services/HBASE/configuration/hbase-site.xml new file mode 100644 index 0000000..715023b --- /dev/null +++ b/ambari-server/src/main/resources/stacks/HDP/2.6/services/HBASE/configuration/hbase-site.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +/** + * 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> + <property> + <name>hbase.regionserver.executor.openregion.threads</name> + <value>20</value> + <description>The number of threads region server uses to open regions + </description> + <on-ambari-upgrade add="false"/> + </property> + <property> + <name>hbase.master.namespace.init.timeout</name> + <value>2400000</value> + <description>The number of milliseconds master waits for hbase:namespace table to be initialized + </description> + <on-ambari-upgrade add="false"/> + </property> + <property> + <name>hbase.master.wait.on.regionservers.timeout</name> + <value>30000</value> + <description>The number of milliseconds master waits for region servers to report in + </description> + <on-ambari-upgrade add="false"/> + </property> +</configuration>
