[Python] Parquet CMake issue

2022-02-02 Thread Ian Joiner
Hi, In order to prevent problematic PRs from happening again I’m cleaning up my local env. Here is my cmake: cmake -DCMAKE_INSTALL_PREFIX=$ARROW_HOME \ -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_BUILD_TYPE=debug \ -DARROW_WITH_BZ2=ON \ -DARROW_WITH_ZLIB=ON \ -DARROW_WIT

Re: Arrow sync call February 2 at 12:00 US/Eastern, 17:00 UTC

2022-02-02 Thread Ian Cook
Attendees: Ian Cook Ian Joiner Will Jones Jon Keane Micah Kornfield Rok Mihevc Alessandro Molina Antoine Pitrou Jacob Quinn Krisztián Szűcs Matt Topol Joris Van den Bossche Discussion: Recent ORC writer work - Ian Joiner is working on several follow-up issues [1] 7.0.0 release current state - K

Re: [VOTE] Release Apache Arrow 7.0.0 - RC10

2022-02-02 Thread Antoine Pitrou
I've successfully tested the following configuration on a Apple M1 with macOS 11.2.3: ARROW_GANDIVA=OFF TEST_DEFAULT=0 TEST_CPP=1 \ ./dev/release/verify-release-candidate.sh source 7.0.0 10 Regards Antoine. Le 02/02/2022 à 17:45, Krisztián Szűcs a écrit : I'm planning to close the VOTE t

Re: Building Arrow Cpp: Cannot find Boost on MacOS

2022-02-02 Thread Benson Muite
On 2/2/22 7:40 PM, Li Jin wrote: David - Will give it a try. I am using Apple clang 12 on MacOS. Related issue https://issues.apache.org/jira/browse/ARROW-15531

Re: [VOTE] Release Apache Arrow 7.0.0 - RC10

2022-02-02 Thread Krisztián Szűcs
I'm planning to close the VOTE tomorrow, but it would be great to have results for the following scenarios: - Verify the staged maven artifacts: this is the first time we ship java jars with bundled shared libraries, but we don't have scripting to test that. For more context see issue https://issu

Re: Building Arrow Cpp: Cannot find Boost on MacOS

2022-02-02 Thread Li Jin
David - Will give it a try. I am using Apple clang 12 on MacOS.

Re: Release 7.0.0 Retrospective

2022-02-02 Thread Alessandro Molina
For anyone interested this is the document that resulted from the Release Retrospective https://docs.google.com/document/d/1xnCWpEqznzcMu3meWUk4SZnFlEiw1dRfh249T1dMXfg/edit# On Tue, Feb 1, 2022 at 11:30 PM Ian Joiner wrote: > Could you please share the retro board so that we can all comment o

Re: [VOTE] Release Apache Arrow 7.0.0 - RC10

2022-02-02 Thread Krisztián Szűcs
+1 (binding) - Verified the binaries (though I had to restart several times because artifactory dropped me off) - Verified the source tarball (required to define DYLD_LIBRARY_PATH instead of LD_LIBRARY_PATH) - Verified the wheels (without problems) on Intel macOS 12. On Mon, Jan 31, 2022 at 9:58

Re: Building Arrow Cpp: Cannot find Boost on MacOS

2022-02-02 Thread David Li
Glad to hear it. A PR would be much appreciated, but I think we just need to declare the function static inline, or move its body to a .cc file (since it is used). Which compiler/version are you using? (Presumably some variant of Clang on MacOS?) On Wed, Feb 2, 2022, at 11:24, Li Jin wrote: >

Re: Building Arrow Cpp: Cannot find Boost on MacOS

2022-02-02 Thread Li Jin
David Li - Thanks! -DBUILD_WARNING_LEVEL=PRODUCTION does the trick! I am happy to submit a PR to remove the used function if that's the proper way to fix this. Benson - I think I got this on fresh build too with -DARROW_COMPUTE=ON (I am using the preset ninja-debug-basic) On Wed, Feb 2, 2022 at

Re: Building Arrow Cpp: Cannot find Boost on MacOS

2022-02-02 Thread Benson Muite
Perhaps try a fresh build in a clean build directory. Most testing has been on Clang 11. Also check your other options, is -DARROW_COMPUTE=ON set? On 2/2/22 6:46 PM, Li Jin wrote: Thanks! -DARROW_DEPENDENCY_SOURCE=BUNDLED seems to do the trick - I can build without adding find_package! Altho

Re: Building Arrow Cpp: Cannot find Boost on MacOS

2022-02-02 Thread David Li
For now -DBUILD_WARNING_LEVEL=PRODUCTION should remove the -Werror and let you compile: https://arrow.apache.org/docs/dev/developers/cpp/development.html#compiler-warning-levels We should fix that though. I filed https://issues.apache.org/jira/browse/ARROW-15530 -David On Wed, Feb 2, 2022, at

Re: Building Arrow Cpp: Cannot find Boost on MacOS

2022-02-02 Thread Li Jin
Thanks! -DARROW_DEPENDENCY_SOURCE=BUNDLED seems to do the trick - I can build without adding find_package! Although, any idea how to get pass this? " */Users/icexelloss/workspace/arrow/cpp/src/arrow/compute/kernels/scalar_string_internal.h:216:20: **error: **unused function 'StringClassifyDoc'

Re: Building Arrow Cpp: Cannot find Boost on MacOS

2022-02-02 Thread Benson Muite
Can you try using one of the CMAKE options: -DARROW_DEPENDENCY_SOURCE=BREW -DARROW_DEPENDENCY_SOURCE=BUNDLED see https://arrow.apache.org/docs/developers/cpp/building.html On 2/2/22 5:44 PM, Li Jin wrote: Also tried to test a basic CMake file with boost on my machine and it appears to find it

Re: Building Arrow Cpp: Cannot find Boost on MacOS

2022-02-02 Thread Li Jin
So I got this working by adding the following two lines to CMakeLists.txt: " *diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt* *index fd7027c30..ad9797263 100644* *--- a/cpp/CMakeLists.txt* *+++ b/cpp/CMakeLists.txt* @@ -163,6 +163,8 @@ endif() find_package(ClangTools) find_package

Re: Building Arrow Cpp: Cannot find Boost on MacOS

2022-02-02 Thread Li Jin
Also tried to test a basic CMake file with boost on my machine and it appears to find it CMakeLists.txt " find_package(Boost COMPONENTS program_options REQUIRED) add_executable(main main.cpp) target_link_libraries(main Boost::program_options) " Log: " -- The C compiler identification is A

Re: Building Arrow Cpp: Cannot find Boost on MacOS

2022-02-02 Thread Li Jin
Yep, Here it is! https://gist.github.com/icexelloss/db0e5df214addd63dc4ab0570ca7ee30 On Tue, Feb 1, 2022 at 6:28 PM Sutou Kouhei wrote: > Hi, > > Could you upload the log to something such as > https://gist.github.com/ and share the URL? > > > Thanks, > -- > kou > > In > "Re: Building Arrow

Arrow sync call February 2 at 12:00 US/Eastern, 17:00 UTC

2022-02-02 Thread Ian Cook
Hi all, Our biweekly sync call is today at 12:00 noon Eastern time. The Zoom meeting URL for this and other biweekly Arrow sync calls is: https://zoom.us/j/87649033008?pwd=SitsRHluQStlREM0TjJVYkRibVZsUT09 Alternatively, enter this information into the Zoom website or app to join the call: Meetin