ZEPPELIN-773 update doc for know issue, and more error logging

This commit is contained in:
Prabhjyot Singh 2016-05-17 15:20:20 +05:30
parent 6f1503f4b4
commit 3deca713f6
2 changed files with 7 additions and 0 deletions

View file

@ -85,3 +85,9 @@ You can leverage [Zeppelin Dynamic Form]({{BASE_PATH}}/manual/dynamicform.html).
%livy.pyspark
print "${group_by=product_id,product_id|product_name|customer_id|store_id}"
```
## Know Issue
If you are getting an error `Blacklisted configuration values in session config: spark.master`
edit `conf/spark-blacklist.conf` file in livy server and comment out `#spark.master` line.

View file

@ -367,6 +367,7 @@ public class LivyHelper {
if (responseString.contains("CreateInteractiveRequest[\\\"master\\\"]")) {
return responseString;
}
LOGGER.error("Error with 500 StatusCode: ", responseString);
}
return null;
}