[SPARK-37206][BUILD][FOLLOWUP] Update avro to 1.11.0 in SparkBuild.scala and docs#36019
Closed
dongjoon-hyun wants to merge 3 commits intoapache:masterfrom
dongjoon-hyun:SPARK-37206
Closed
[SPARK-37206][BUILD][FOLLOWUP] Update avro to 1.11.0 in SparkBuild.scala and docs#36019dongjoon-hyun wants to merge 3 commits intoapache:masterfrom dongjoon-hyun:SPARK-37206
SparkBuild.scala and docs#36019dongjoon-hyun wants to merge 3 commits intoapache:masterfrom
dongjoon-hyun:SPARK-37206
Conversation
Member
Author
|
cc @sarutak and @HyukjinKwon . |
Member
|
@dongjoon-hyun Nice catch! It LGTM, pending CIs. |
Member
Author
|
Thank you, @sarutak . |
Member
|
@dongjoon-hyun I found extra 2 occurrence of Should we fix them in this PR too? |
Member
Author
|
Oh. Thank you! I'll include them too |
Member
Author
|
It seems that the documentation is a little complicated. I found more. |
Member
Author
|
If the links are still valid in 1.11.0, I'll update all of them. |
Member
|
Oh, I didn't notice them in docs. Thank you! |
Member
|
BTW, it might be better to note that we need to modify other occurrences of the version when we upgrade Avro. |
Member
Author
|
Update docs and added note. |
SparkBuild.scalaSparkBuild.scala and docs
Member
|
cc @gengliangwang too |
HyukjinKwon
approved these changes
Mar 31, 2022
sarutak
approved these changes
Mar 31, 2022
Member
Author
|
Thank you, @HyukjinKwon , @gengliangwang , @sarutak (again) |
wangyum
approved these changes
Mar 31, 2022
wangyum
pushed a commit
that referenced
this pull request
Mar 31, 2022
…cala` and docs ### What changes were proposed in this pull request? This is a follow-up of #34482 to update the Avro version consistently in both Maven and SBT. In addition, this also reviews and updates the doc links and adds a note for the future. ### Why are the changes needed? Due to the mismatch, there occur some compilation failures in some systems. ``` $ build/mvn dependency:tree -pl core | grep avro [INFO] +- org.apache.avro:avro:jar:1.11.0:compile [INFO] +- org.apache.avro:avro-mapred:jar:1.11.0:compile [INFO] | \- org.apache.avro:avro-ipc:jar:1.11.0:compile ``` ``` $ build/sbt "core/dependencyTree" | grep avro [info] +-org.apache.avro:avro-mapred:1.11.0 [info] | +-org.apache.avro:avro-ipc:1.11.0 [info] | | +-org.apache.avro:avro:1.10.2 [info] +-org.apache.avro:avro:1.10.2 ``` ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Manually verified. Closes #36019 from dongjoon-hyun/SPARK-37206. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Yuming Wang <yumwang@ebay.com> (cherry picked from commit d790f3e) Signed-off-by: Yuming Wang <yumwang@ebay.com>
Member
|
Merged to master and branch-3.3 |
Member
Author
|
Thank you, @wangyum ! |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What changes were proposed in this pull request?
This is a follow-up of #34482 to update the Avro version consistently in both Maven and SBT.
In addition, this also reviews and updates the doc links and adds a note for the future.
Why are the changes needed?
Due to the mismatch, there occur some compilation failures in some systems.
Does this PR introduce any user-facing change?
No.
How was this patch tested?
Manually verified.