зеркало из https://github.com/microsoft/SynapseML.git
69 строки
2.8 KiB
Plaintext
69 строки
2.8 KiB
Plaintext
#
|
|
# 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.
|
|
#
|
|
# Use this keystore for the SSL certificate and key.
|
|
# livy.keystore =
|
|
|
|
# Specify the keystore password.
|
|
# livy.keystore.password =
|
|
#
|
|
# Specify the key password.
|
|
# livy.key-password =
|
|
|
|
# What host address to start the server on. By default, Livy will bind to all network interfaces.
|
|
# livy.server.host = 0.0.0.0
|
|
|
|
# What port to start the server on.
|
|
# livy.server.port = 8998
|
|
|
|
# Enabled to check whether timeout Livy sessions should be stopped.
|
|
# livy.server.session.timeout-check = true
|
|
|
|
# Time in milliseconds on how long Livy will wait before timing out an idle session.
|
|
# livy.server.session.timeout = 1h
|
|
|
|
# How long a finished session state should be kept in LivyServer for query.
|
|
# livy.server.session.state-retain.sec = 600s
|
|
|
|
# If livy should impersonate the requesting users when creating a new session.
|
|
livy.impersonation.enabled = true
|
|
|
|
|
|
# Whether to enable csrf protection, by default it is false. If it is enabled, client should add
|
|
# http-header "X-Requested-By" in request if the http method is POST/DELETE/PUT/PATCH.
|
|
# livy.server.csrf-protection.enabled =
|
|
|
|
# Recovery mode of Livy. Possible values:
|
|
# off: Default. Turn off recovery. Every time Livy shuts down, it stops and forgets all sessions.
|
|
# recovery: Livy persists session info to the state store. When Livy restarts, it recovers
|
|
# previous sessions from the state store.
|
|
# Must set livy.server.recovery.state-store and livy.server.recovery.state-store.url to
|
|
# configure the state store.
|
|
#livy.server.recovery.mode = on
|
|
|
|
# Where Livy should store state to for recovery. Possible values:
|
|
# <empty>: Default. State store disabled.
|
|
# filesystem: Store state on a file system.
|
|
# zookeeper: Store state in a Zookeeper instance.
|
|
# livy.server.recovery.state-store =
|
|
|
|
# For filesystem state store, the path of the state store directory. Please don't use a filesystem
|
|
# that doesn't support atomic rename (e.g. S3). e.g. file:///tmp/livy or hdfs:///.
|
|
# For zookeeper, the address to the Zookeeper servers. e.g. host1:port1,host2:port2
|
|
# livy.server.recovery.state-store.url =
|
|
|
|
livy.repl.enable-hive-context = false
|