Prabhjyot Singh created ZEPPELIN-3240:
-----------------------------------------
Summary: Zeppelin server fail to start if interpreter has mixed
properties
Key: ZEPPELIN-3240
URL: https://issues.apache.org/jira/browse/ZEPPELIN-3240
Project: Zeppelin
Issue Type: Bug
Reporter: Prabhjyot Singh
I found that Zeppelin server is failing to start when there is a mix of both
kind of properties in interpreter;
{code:java}
"properties": {
"shell.command.timeout.millisecs": {
"type": "string",
"name": "shell.command.timeout.millisecs",
"value": "60000"
},
"shell.working.directory.user.home": {
"type": "checkbox",
"name": "shell.working.directory.user.home",
"value": false
},
"zeppelin.shell.auth.type": "KERBEROS",
"zeppelin.shell.keytab.location":
"/etc/security/keytabs/zeppelin.server.kerberos.keytab",
"zeppelin.shell.principal": "[email protected]"
}
{code}
Mix as in these two kind of properties:
- Where key is string and value is object
{code:java}
"shell.command.timeout.millisecs": {
"type": "string",
"name": "shell.command.timeout.millisecs",
"value": "60000"
}
{code}
- Where key and value both are string
{code:java}
"zeppelin.shell.auth.type": "KERBEROS"
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)