-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
GH-39136: [C++] Remove needless system Protobuf dependency with -DARROW_HDFS=ON #39137
GH-39136: [C++] Remove needless system Protobuf dependency with -DARROW_HDFS=ON #39137
Conversation
@github-actions crossbow submit java-jars -g cpp |
|
Revision: 3b3a3f8 Submitted crossbow builds: ursacomputing/crossbow @ actions-53621e6da1 |
After merging your PR, Conbench analyzed the 6 benchmarking runs that have been run so far on merge-commit 8a644af. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 2 possible false positives for unstable benchmarks that are known to sometimes produce them. |
… -DARROW_HDFS=ON (apache#39137) ### Rationale for this change Our HDFS related codes don't depend on Protobuf because we process HDFS via external `libhdfs.so` and it's `dlopen()`-ed. ### What changes are included in this PR? Remove a needless CMake configuration. ### Are these changes tested? Yes. ### Are there any user-facing changes? Yes. * Closes: apache#39136 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
… -DARROW_HDFS=ON (apache#39137) ### Rationale for this change Our HDFS related codes don't depend on Protobuf because we process HDFS via external `libhdfs.so` and it's `dlopen()`-ed. ### What changes are included in this PR? Remove a needless CMake configuration. ### Are these changes tested? Yes. ### Are there any user-facing changes? Yes. * Closes: apache#39136 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
… -DARROW_HDFS=ON (apache#39137) ### Rationale for this change Our HDFS related codes don't depend on Protobuf because we process HDFS via external `libhdfs.so` and it's `dlopen()`-ed. ### What changes are included in this PR? Remove a needless CMake configuration. ### Are these changes tested? Yes. ### Are there any user-facing changes? Yes. * Closes: apache#39136 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
Rationale for this change
Our HDFS related codes don't depend on Protobuf because we process HDFS via external
libhdfs.so
and it'sdlopen()
-ed.What changes are included in this PR?
Remove a needless CMake configuration.
Are these changes tested?
Yes.
Are there any user-facing changes?
Yes.