Source code for prestoadmin.presto_conf
# -*- coding: utf-8 -*-
#
# 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.
"""
Module for processing presto configuration files
"""
import logging
import os
from prestoadmin.config import get_conf_from_properties_file, \
get_conf_from_config_file
from prestoadmin.util.exception import ConfigurationError
REQUIRED_FILES = ["node.properties", "jvm.config", "config.properties"]
PRESTO_FILES = ["node.properties", "jvm.config", "config.properties",
"log.properties"]
_LOGGER = logging.getLogger(__name__)
[docs]def get_presto_conf(conf_dir):
if os.path.isdir(conf_dir):
file_list = [name for name in os.listdir(conf_dir) if
name in PRESTO_FILES]
else:
_LOGGER.debug("No directory " + conf_dir)
file_list = []
conf = {}
for filename in file_list:
ext = os.path.splitext(filename)[1]
file_path = os.path.join(conf_dir, filename)
if ext == ".properties":
conf[filename] = get_conf_from_properties_file(file_path)
elif ext == ".config":
conf[filename] = get_conf_from_config_file(file_path)
return conf
[docs]def validate_presto_conf(conf):
for required in REQUIRED_FILES:
if required not in conf:
raise ConfigurationError("Missing configuration for required "
"file: " + required)
expect_object_msg = "%s must be an object with key-value property pairs"
if not isinstance(conf["node.properties"], dict):
raise ConfigurationError(expect_object_msg % "node.properties")
if not isinstance(conf["jvm.config"], list):
raise ConfigurationError("jvm.config must contain a json array of jvm "
"arguments ([arg1, arg2, arg3])")
if not isinstance(conf["config.properties"], dict):
raise ConfigurationError(expect_object_msg % "config.properties")
return conf