5c5491f9de
Changes: * using oslo_config instead of oslo.config * using oslo_concurrency instead of oslo.concurrency * using oslo_db instead of oslo.db * using oslo_i18n instead of oslo.i18n * using oslo_messaging instead of oslo.messaging * using oslo_middleware instead of oslo.middleware * using oslo_serialization instead of oslo.serialization * using oslo_utils instead of oslo.utils Change-Id: Ib0f18603ca5b0885256a39a96a3620d05260a272 Closes-bug: #1414587
99 lines
2.6 KiB
Python
99 lines
2.6 KiB
Python
# Copyright (c) 2014 Mirantis Inc.
|
|
#
|
|
# Licensed 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.
|
|
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
|
|
from sahara.plugins.vanilla.hadoop2 import config_helper as c_helper
|
|
from sahara.utils import xmlutils as x
|
|
|
|
CONF = cfg.CONF
|
|
CONF.import_opt("enable_data_locality", "sahara.topology.topology_helper")
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
CORE_DEFAULT = x.load_hadoop_xml_defaults(
|
|
'plugins/vanilla/v2_6_0/resources/core-default.xml')
|
|
|
|
HDFS_DEFAULT = x.load_hadoop_xml_defaults(
|
|
'plugins/vanilla/v2_6_0/resources/hdfs-default.xml')
|
|
|
|
MAPRED_DEFAULT = x.load_hadoop_xml_defaults(
|
|
'plugins/vanilla/v2_6_0/resources/mapred-default.xml')
|
|
|
|
YARN_DEFAULT = x.load_hadoop_xml_defaults(
|
|
'plugins/vanilla/v2_6_0/resources/yarn-default.xml')
|
|
|
|
OOZIE_DEFAULT = x.load_hadoop_xml_defaults(
|
|
'plugins/vanilla/v2_6_0/resources/oozie-default.xml')
|
|
|
|
HIVE_DEFAULT = x.load_hadoop_xml_defaults(
|
|
'plugins/vanilla/v2_6_0/resources/hive-default.xml')
|
|
|
|
XML_CONFS = {
|
|
"Hadoop": [CORE_DEFAULT],
|
|
"HDFS": [HDFS_DEFAULT],
|
|
"YARN": [YARN_DEFAULT],
|
|
"MapReduce": [MAPRED_DEFAULT],
|
|
"JobFlow": [OOZIE_DEFAULT],
|
|
"Hive": [HIVE_DEFAULT]
|
|
}
|
|
|
|
ENV_CONFS = {
|
|
"YARN": {
|
|
'ResourceManager Heap Size': 1024,
|
|
'NodeManager Heap Size': 1024
|
|
},
|
|
"HDFS": {
|
|
'NameNode Heap Size': 1024,
|
|
'SecondaryNameNode Heap Size': 1024,
|
|
'DataNode Heap Size': 1024
|
|
},
|
|
"MapReduce": {
|
|
'JobHistoryServer Heap Size': 1024
|
|
},
|
|
"JobFlow": {
|
|
'Oozie Heap Size': 1024
|
|
}
|
|
}
|
|
|
|
|
|
# Initialise plugin Hadoop configurations
|
|
PLUGIN_XML_CONFIGS = c_helper.init_xml_configs(XML_CONFS)
|
|
PLUGIN_ENV_CONFIGS = c_helper.init_env_configs(ENV_CONFS)
|
|
|
|
|
|
def _init_all_configs():
|
|
configs = []
|
|
configs.extend(PLUGIN_XML_CONFIGS)
|
|
configs.extend(PLUGIN_ENV_CONFIGS)
|
|
configs.extend(c_helper.PLUGIN_GENERAL_CONFIGS)
|
|
return configs
|
|
|
|
|
|
PLUGIN_CONFIGS = _init_all_configs()
|
|
|
|
|
|
def get_plugin_configs():
|
|
return PLUGIN_CONFIGS
|
|
|
|
|
|
def get_xml_configs():
|
|
return PLUGIN_XML_CONFIGS
|
|
|
|
|
|
def get_env_configs():
|
|
return ENV_CONFS
|