-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-17985][CORE] Bump commons-lang3 version to 3.5. #15525
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
Conversation
|
Test build #67107 has finished for PR 15525 at commit
|
|
Jenkins, retest this please. |
|
I think this is OK. The general issue is whether it will be compatible with other transitive dependencies, but I believe it would remain so. |
|
Test build #67111 has finished for PR 15525 at commit
|
|
Merging in master. |
|
Actually I'm seeing the following exceptions locally as well as on Jenkins for Hadoop 2.2: I'm going to revert the patch for now. |
|
@rxin I think the failure is not related to this PR. Looks |
|
Ah alright thanks. Can you submit a new pr so I can merge it again? |
|
I see. I'll submit soon. |
## What changes were proposed in this pull request? `SerializationUtils.clone()` of commons-lang3 (<3.5) has a bug that breaks thread safety, which gets stack sometimes caused by race condition of initializing hash map. See https://issues.apache.org/jira/browse/LANG-1251. ## How was this patch tested? Existing tests. Author: Takuya UESHIN <[email protected]> Closes apache#15525 from ueshin/issues/SPARK-17985.
## What changes were proposed in this pull request? `SerializationUtils.clone()` of commons-lang3 (<3.5) has a bug that breaks thread safety, which gets stack sometimes caused by race condition of initializing hash map. See https://issues.apache.org/jira/browse/LANG-1251. ## How was this patch tested? Existing tests. Author: Takuya UESHIN <[email protected]> Closes apache#15525 from ueshin/issues/SPARK-17985.
What changes were proposed in this pull request?
SerializationUtils.clone()of commons-lang3 (<3.5) has a bug that breaks thread safety, which gets stack sometimes caused by race condition of initializing hash map.See https://issues.apache.org/jira/browse/LANG-1251.
How was this patch tested?
Existing tests.