blob: 390576b6051b16373d65664b7a511a168e0847a7 [file] [log] [blame]
"""
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.
"""
from resource_management.core.exceptions import ComponentIsNotRunning
from resource_management.core.logger import Logger
from resource_management.core.resources.system import File
from resource_management.core.source import Template
from resource_management.libraries.functions.format import format
from resource_management.libraries.script import Script
from enrichment_commands import EnrichmentCommands
class Enrichment(Script):
def install(self, env):
from params import params
env.set_params(params)
commands = EnrichmentCommands(params)
commands.setup_repo()
Logger.info('Install RPM packages')
self.install_packages(env)
self.configure(env)
def configure(self, env, upgrade_type=None, config_dir=None):
from params import params
env.set_params(params)
File(format("{metron_config_path}/enrichment.properties"),
content=Template("enrichment.properties.j2"),
owner=params.metron_user,
group=params.metron_group
)
def start(self, env, upgrade_type=None):
from params import params
env.set_params(params)
commands = EnrichmentCommands(params)
if not commands.is_configured():
commands.init_kafka_topics()
commands.create_hbase_tables()
commands.set_configured()
commands.start_enrichment_topology()
def stop(self, env, upgrade_type=None):
from params import params
env.set_params(params)
commands = EnrichmentCommands(params)
commands.stop_enrichment_topology()
def status(self, env):
from params import status_params
env.set_params(status_params)
commands = EnrichmentCommands(status_params)
if not commands.is_topology_active(env):
raise ComponentIsNotRunning()
def restart(self, env):
from params import params
env.set_params(params)
commands = EnrichmentCommands(params)
commands.restart_enrichment_topology(env)
def kafkabuild(self, env, upgrade_type=None):
from params import params
env.set_params(params)
commands = EnrichmentCommands(params)
commands.init_kafka_topics()
if __name__ == "__main__":
Enrichment().execute()