|
| 1 | +<?xml version="1.0"?> |
| 2 | +<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> |
| 3 | +<!-- |
| 4 | + Licensed to the Apache Software Foundation (ASF) under one or more |
| 5 | + contributor license agreements. See the NOTICE file distributed with |
| 6 | + this work for additional information regarding copyright ownership. |
| 7 | + The ASF licenses this file to You under the Apache License, Version 2.0 |
| 8 | + (the "License"); you may not use this file except in compliance with |
| 9 | + the License. You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | + Unless required by applicable law or agreed to in writing, software |
| 14 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | + See the License for the specific language governing permissions and |
| 17 | + limitations under the License. |
| 18 | +--> |
| 19 | + |
| 20 | +<configuration> |
| 21 | + |
| 22 | +<property> |
| 23 | + <name>zeppelin.server.addr</name> |
| 24 | + <value>0.0.0.0</value> |
| 25 | + <description>Server address</description> |
| 26 | +</property> |
| 27 | + |
| 28 | +<property> |
| 29 | + <name>zeppelin.server.port</name> |
| 30 | + <value>8080</value> |
| 31 | + <description>Server port.</description> |
| 32 | +</property> |
| 33 | + |
| 34 | +<property> |
| 35 | + <name>zeppelin.notebook.dir</name> |
| 36 | + <value>notebook</value> |
| 37 | + <description>path or URI for notebook persist</description> |
| 38 | +</property> |
| 39 | + |
| 40 | +<property> |
| 41 | + <name>zeppelin.notebook.homescreen</name> |
| 42 | + <value></value> |
| 43 | + <description>id of notebook to be displayed in homescreen. ex) 2A94M5J1Z Empty value displays default home screen</description> |
| 44 | +</property> |
| 45 | + |
| 46 | +<property> |
| 47 | + <name>zeppelin.notebook.homescreen.hide</name> |
| 48 | + <value>false</value> |
| 49 | + <description>hide homescreen notebook from list when this value set to true</description> |
| 50 | +</property> |
| 51 | + |
| 52 | + |
| 53 | +<!-- If used S3 to storage the notebooks, it is necessary the following folder structure bucketname/username/notebook/ --> |
| 54 | +<!-- |
| 55 | +<property> |
| 56 | + <name>zeppelin.notebook.s3.user</name> |
| 57 | + <value>user</value> |
| 58 | + <description>user name for s3 folder structure</description> |
| 59 | +</property> |
| 60 | +
|
| 61 | +<property> |
| 62 | + <name>zeppelin.notebook.s3.bucket</name> |
| 63 | + <value>zeppelin</value> |
| 64 | + <description>bucket name for notebook storage</description> |
| 65 | +</property> |
| 66 | +
|
| 67 | +<property> |
| 68 | + <name>zeppelin.notebook.storage</name> |
| 69 | + <value>org.apache.zeppelin.notebook.repo.S3NotebookRepo</value> |
| 70 | + <description>notebook persistence layer implementation</description> |
| 71 | +</property> |
| 72 | +--> |
| 73 | + |
| 74 | +<property> |
| 75 | + <name>zeppelin.notebook.storage</name> |
| 76 | + <value>org.apache.zeppelin.notebook.repo.VFSNotebookRepo</value> |
| 77 | + <description>notebook persistence layer implementation</description> |
| 78 | +</property> |
| 79 | + |
| 80 | +<property> |
| 81 | + <name>zeppelin.interpreter.dir</name> |
| 82 | + <value>interpreter</value> |
| 83 | + <description>Interpreter implementation base directory</description> |
| 84 | +</property> |
| 85 | + |
| 86 | +<property> |
| 87 | + <name>zeppelin.interpreters</name> |
| 88 | + <value>org.apache.zeppelin.spark.SparkInterpreter,org.apache.zeppelin.spark.PySparkInterpreter,org.apache.zeppelin.spark.SparkSqlInterpreter,org.apache.zeppelin.spark.DepInterpreter,org.apache.zeppelin.markdown.Markdown,org.apache.zeppelin.angular.AngularInterpreter,org.apache.zeppelin.shell.ShellInterpreter,org.apache.zeppelin.hive.HiveInterpreter,org.apache.zeppelin.tajo.TajoInterpreter,org.apache.zeppelin.flink.FlinkInterpreter,org.apache.zeppelin.lens.LensInterpreter,org.apache.zeppelin.ignite.IgniteInterpreter,org.apache.zeppelin.ignite.IgniteSqlInterpreter,org.apache.zeppelin.cassandra.CassandraInterpreter,org.apache.zeppelin.geode.GeodeOqlInterpreter,org.apache.zeppelin.postgresql.PostgreSqlInterpreter</value> |
| 89 | + <description>Comma separated interpreter configurations. First interpreter become a default</description> |
| 90 | +</property> |
| 91 | + |
| 92 | +<property> |
| 93 | + <name>zeppelin.interpreter.connect.timeout</name> |
| 94 | + <value>30000</value> |
| 95 | + <description>Interpreter process connect timeout in msec.</description> |
| 96 | +</property> |
| 97 | + |
| 98 | + |
| 99 | +<property> |
| 100 | + <name>zeppelin.ssl</name> |
| 101 | + <value>false</value> |
| 102 | + <description>Should SSL be used by the servers?</description> |
| 103 | +</property> |
| 104 | + |
| 105 | +<property> |
| 106 | + <name>zeppelin.ssl.client.auth</name> |
| 107 | + <value>false</value> |
| 108 | + <description>Should client authentication be used for SSL connections?</description> |
| 109 | +</property> |
| 110 | + |
| 111 | +<property> |
| 112 | + <name>zeppelin.ssl.keystore.path</name> |
| 113 | + <value>keystore</value> |
| 114 | + <description>Path to keystore relative to Zeppelin configuration directory</description> |
| 115 | +</property> |
| 116 | + |
| 117 | +<property> |
| 118 | + <name>zeppelin.ssl.keystore.type</name> |
| 119 | + <value>JKS</value> |
| 120 | + <description>The format of the given keystore (e.g. JKS or PKCS12)</description> |
| 121 | +</property> |
| 122 | + |
| 123 | +<property> |
| 124 | + <name>zeppelin.ssl.keystore.password</name> |
| 125 | + <value>change me</value> |
| 126 | + <description>Keystore password. Can be obfuscated by the Jetty Password tool</description> |
| 127 | +</property> |
| 128 | + |
| 129 | +<!-- |
| 130 | +<property> |
| 131 | + <name>zeppelin.ssl.key.manager.password</name> |
| 132 | + <value>change me</value> |
| 133 | + <description>Key Manager password. Defaults to keystore password. Can be obfuscated.</description> |
| 134 | +</property> |
| 135 | +--> |
| 136 | + |
| 137 | +<property> |
| 138 | + <name>zeppelin.ssl.truststore.path</name> |
| 139 | + <value>truststore</value> |
| 140 | + <description>Path to truststore relative to Zeppelin configuration directory. Defaults to the keystore path</description> |
| 141 | +</property> |
| 142 | + |
| 143 | +<property> |
| 144 | + <name>zeppelin.ssl.truststore.type</name> |
| 145 | + <value>JKS</value> |
| 146 | + <description>The format of the given truststore (e.g. JKS or PKCS12). Defaults to the same type as the keystore type</description> |
| 147 | +</property> |
| 148 | + |
| 149 | + <property> |
| 150 | + <name>zeppelin.server.allowed.origins</name> |
| 151 | + <value>http://onehost:8080,http://otherhost.com,</value> |
| 152 | + <description>Allowed sources for REST and WebSocket requests.</description> |
| 153 | + </property> |
| 154 | +<!-- |
| 155 | +<property> |
| 156 | + <name>zeppelin.ssl.truststore.password</name> |
| 157 | + <value>change me</value> |
| 158 | + <description>Truststore password. Can be obfuscated by the Jetty Password tool. Defaults to the keystore password</description> |
| 159 | +</property> |
| 160 | +--> |
| 161 | + |
| 162 | +</configuration> |
| 163 | + |
0 commit comments