Many Java-based big data systems such as SystemML, Spark's MLLib, CaffeOnSpark, etc that use the Py4J bridge in their Python APIs often throw a cryptic error instead of detailed Java stacktrace:
For more details on this issue, please refer to Python's unicode documentation.py4j.protocol.Py4JJavaError: < exception str() failed >
Luckily, there is a very simple hack to extract the stack trace in such a situation. Let's assume that SystemML's MLContext is throwing the above Py4J error: ml.execute(script). In this case, simply wrap that code in the following try/except block:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try: | |
ml.execute(script) | |
except py4j.protocol.Py4JJavaError as err: | |
print(str(err.__unicode__().encode('utf-8'))) |
No comments:
Post a Comment