-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-13848][SPARK-5185] Update to Py4J 0.9.2 in order to fix classloading issue #11687
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
d21301f
[SPARK-13848] Update to Py4J 0.9.2
JoshRosen 40d22cc
[SPARK-5185] Update Py4J tests to demonstate that SPARK-5185 has been…
JoshRosen 15e23f8
Update kinesis.py
JoshRosen 73344df
Narrow exception catching
JoshRosen 650d589
Flume doesn't create SSC in setup.
JoshRosen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -74,16 +74,14 @@ def createStream(ssc, kinesisAppName, streamName, endpointUrl, regionName, | |
|
|
||
| try: | ||
| # Use KinesisUtilsPythonHelper to access Scala's KinesisUtils | ||
| helperClass = ssc._jvm.java.lang.Thread.currentThread().getContextClassLoader()\ | ||
| .loadClass("org.apache.spark.streaming.kinesis.KinesisUtilsPythonHelper") | ||
| helper = helperClass.newInstance() | ||
| jstream = helper.createStream(ssc._jssc, kinesisAppName, streamName, endpointUrl, | ||
| regionName, initialPositionInStream, jduration, jlevel, | ||
| awsAccessKeyId, awsSecretKey) | ||
| except Py4JJavaError as e: | ||
| if 'ClassNotFoundException' in str(e.java_exception): | ||
| helper = ssc._jvm.org.apache.spark.streaming.kinesis.KinesisUtilsPythonHelper() | ||
| except TypeError as e: | ||
| if str(e) == "'JavaPackage' object is not callable": | ||
| KinesisUtils._printErrorMsg(ssc.sparkContext) | ||
| raise | ||
| jstream = helper.createStream(ssc._jssc, kinesisAppName, streamName, endpointUrl, | ||
| regionName, initialPositionInStream, jduration, jlevel, | ||
| awsAccessKeyId, awsSecretKey) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as the above comment |
||
| stream = DStream(jstream, ssc, NoOpSerializer()) | ||
| return stream.map(lambda v: decoder(v)) | ||
|
|
||
|
|
||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,18 +38,15 @@ def createStream(ssc, brokerUrl, topic, | |
| :param storageLevel: RDD storage level. | ||
| :return: A DStream object | ||
| """ | ||
| jlevel = ssc._sc._getJavaStorageLevel(storageLevel) | ||
|
|
||
| try: | ||
| helperClass = ssc._jvm.java.lang.Thread.currentThread().getContextClassLoader() \ | ||
| .loadClass("org.apache.spark.streaming.mqtt.MQTTUtilsPythonHelper") | ||
| helper = helperClass.newInstance() | ||
| jstream = helper.createStream(ssc._jssc, brokerUrl, topic, jlevel) | ||
| except Py4JJavaError as e: | ||
| if 'ClassNotFoundException' in str(e.java_exception): | ||
| helper = ssc._jvm.org.apache.spark.streaming.mqtt.MQTTUtilsPythonHelper() | ||
| except TypeError as e: | ||
| if str(e) == "'JavaPackage' object is not callable": | ||
| MQTTUtils._printErrorMsg(ssc.sparkContext) | ||
| raise | ||
|
|
||
| jlevel = ssc._sc._getJavaStorageLevel(storageLevel) | ||
| jstream = helper.createStream(ssc._jssc, brokerUrl, topic, jlevel) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as the above comment |
||
| return DStream(jstream, ssc, UTF8Deserializer()) | ||
|
|
||
| @staticmethod | ||
|
|
||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's still keep this check. For other errors (e.g., the py4j java server is down), we should not call
_printErrorMsgas it's confusing.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made this change because the call now fails with a different set of exceptions (such as "attempting to call a package") and wanted to err on the side of over-displaying the warning message. Let me try to figure out a narrower exception pattern match.