| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- #!/usr/bin/env python
- # Licensed to Cloudera, Inc. under one
- # or more contributor license agreements. See the NOTICE file
- # distributed with this work for additional information
- # regarding copyright ownership. Cloudera, Inc. 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.
- import logging
- import os
- import sys
- from django.utils.translation import ugettext_lazy as _t, ugettext as _
- from desktop.lib.conf import Config, coerce_bool
- from spark.settings import NICE_NAME
- LOG = logging.getLogger(__name__)
- LIVY_ASSEMBLY_JAR = Config(
- key="livy_assembly_jar",
- help=_t("Path to livy-assembly.jar"),
- private=True,
- default=os.path.join(os.path.dirname(__file__), "..", "..", "java-lib", "livy-assembly.jar"))
- LIVY_SERVER_HOST = Config(
- key="livy_server_host",
- help=_t("Host address of the Livy Server."),
- default="localhost")
- LIVY_SERVER_PORT = Config(
- key="livy_server_port",
- help=_t("Port of the Livy Server."),
- default="8998")
- LIVY_SERVER_SESSION_KIND = Config(
- key="livy_server_session_kind",
- help=_t("Configure livy to start in local 'process' mode, or 'yarn' workers."),
- default="process")
- LIVY_YARN_JAR = Config(
- key="livy_yarn_jar",
- help=_t("Path to livy-assembly.jar inside HDFS"),
- private=True)
- LIVY_IMPERSONATION_ENABLED = Config(
- key="livy_impersonation_enabled",
- help=_t("Use impersonation when submitting livy jobs"),
- default=True,
- type=coerce_bool)
- START_LIVY_SERVER = Config(
- key="start_livy_server",
- help=_t("Experimental option to launch livy"),
- default=False,
- type=coerce_bool,
- private=True)
- SQL_SERVER_HOST = Config(
- key="sql_server_host",
- help=_t("Host where SparkSQL server is running."),
- default="localhost")
- SQL_SERVER_PORT = Config(
- key="sql_server_port",
- help=_t("Port the SparkSQL server runs on."),
- default=10000,
- type=int)
- def get_livy_server_url():
- return 'http://%s:%s' % (LIVY_SERVER_HOST.get(), LIVY_SERVER_PORT.get())
- def get_spark_status(user):
- from spark.job_server_api import get_api
- status = None
- try:
- if not 'test' in sys.argv: # Avoid tests hanging
- get_api(user).get_status()
- status = 'OK'
- except:
- LOG.exception('failed to get spark status')
- return status
- def config_validator(user):
- res = []
- status = get_spark_status(user)
- if status != 'OK':
- res.append((NICE_NAME, _("The app won't work without a running Livy Spark Server")))
- return res
|