-
Notifications
You must be signed in to change notification settings - Fork 483
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
ORC-1019: Remove redundant jackson dependencies #930
Conversation
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.
Thank you for making a PR, @guiyanakuang . BTW, this looks like a revert of ORC-807 (from @belugabehr )
So, is this the current status, @guiyanakuang ?
In fact, the bench module does not directly depend on jackson, only spark indirectly depends on the specified version of jackson.
Yes, because the code that depends on jackson has been rewritten with gson in ORC-946. I'm sure this is the current state.
update: I was wrong, actually spark and avro depend on different versions of jackson in orc-benchmarks-spark, explicit dependencies are better than letting maven choose based on the length of the dependency path, I think it's better to keep it. |
Ya, I agree with your updated opinion, @guiyanakuang . Then, shall we close this PR? |
Since you investigated this, please take over #928. The bot is only reducing the human-labor to check the new versions. So, the main contribution is the human review and investigation. Thank you for your review on #928 and investigation on this. I really appreciate your passion and contribution, @guiyanakuang . |
@dongjoon-hyun. Sorry, I didn't make my point clearly. |
Got it, @guiyanakuang ! |
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.
+1, LGTM.
Merged to BTW, one tip for you, @guiyanakuang . For this PR, I revised the PR description and merged it. |
Got it, hahaha, thank you @dongjoon-hyun . |
What changes were proposed in this pull request?
This PR aims to remove redundant jackson dependencies.
Unfortunately, ORC-946 forgot to remove the bench dependency on jackson. In fact, the bench module does not directly depend on jackson, only spark indirectly depends on the specified version of jackson.
Why are the changes needed?
Minimising dependencies.
How was this patch tested?
Pass the CIs.
Closes #928