Skip to content

Commit 3deca71

Browse files
ZEPPELIN-773 update doc for know issue, and more error logging
1 parent 6f1503f commit 3deca71

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

docs/interpreter/livy.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,9 @@ You can leverage [Zeppelin Dynamic Form]({{BASE_PATH}}/manual/dynamicform.html).
8585
%livy.pyspark
8686
print "${group_by=product_id,product_id|product_name|customer_id|store_id}"
8787
```
88+
89+
## Know Issue
90+
If you are getting an error `Blacklisted configuration values in session config: spark.master`
91+
92+
edit `conf/spark-blacklist.conf` file in livy server and comment out `#spark.master` line.
93+

livy/src/main/java/org/apache/zeppelin/livy/LivyHelper.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ protected String executeHTTP(String targetURL, String method, String jsonData, S
367367
if (responseString.contains("CreateInteractiveRequest[\\\"master\\\"]")) {
368368
return responseString;
369369
}
370+
LOGGER.error("Error with 500 StatusCode: ", responseString);
370371
}
371372
return null;
372373
}

0 commit comments

Comments
 (0)