Using Arrow C++ in your own project — Apache Arrow v20.0.0 (original) (raw)

This section assumes you already have the Arrow C++ libraries on your system, either after installing them using a package manager or afterbuilding them yourself.

The recommended way to integrate the Arrow C++ libraries in your own C++ project is to use CMake’s find_packagefunction for locating and integrating dependencies. If you don’t use CMake as a build system, you can use pkg-config to find installed the Arrow C++ libraries.

CMake#

Basic usage#

This minimal CMakeLists.txt file compiles a my_example.cc source file into an executable linked with the Arrow C++ shared library:

cmake_minimum_required(VERSION 3.25)

project(MyExample)

find_package(Arrow REQUIRED)

add_executable(my_example my_example.cc) target_link_libraries(my_example PRIVATE Arrow::arrow_shared)

Available variables and targets#

The directive find_package(Arrow REQUIRED) asks CMake to find an Arrow C++ installation on your system. When it returns, it will have set a few CMake variables:

In addition, it will have created some targets that you can link against (note these are plain strings, not variables):

For backwards compatibility purposes the arrow_shared and arrow_statictargets are also available but we recommend using Arrow::arrow_shared andArrow::arrow_static respectively.

In most cases, it is recommended to use the Arrow shared libraries.

If Arrow is installed on a custom path instead of a common system one you will have to add the path where Arrow is installed to CMAKE_PREFIX_PATH.

CMAKE_PREFIX_PATH can be defined as a CMake variable or anenvironment variable.

Your system might already have a CMAKE_PREFIX_PATH environment variable defined, use the following to expand it with the path to your Arrow installation. In this case ARROW_ROOT is expected to contain the path to your Arrow installation:

export CMAKE_PREFIX_PATH=${ARROW_ROOT}${CMAKE_PREFIX_PATH:+:${CMAKE_PREFIX_PATH}}

In the case of using a CMake variable you can add it when configuring the project like the following to contain the possible existingCMAKE_PREFIX_PATH environment variable:

cmake ... -DCMAKE_PREFIX_PATH=${ARROW_ROOT}${CMAKE_PREFIX_PATH:+:${CMAKE_PREFIX_PATH}}

Note

The usage of COMPONENTS on our find_package implementation is currently not supported.

Other available packages#

There are other available packages, they can also be used with the find_package directive. This is the list of available ones and the respective targets created:

Note

CMake is case-sensitive. The names and variables listed above have to be spelt exactly that way!

pkg-config#

Basic usage#

You can get suitable build flags by the following command line:

pkg-config --cflags --libs arrow

If you want to link the Arrow C++ static library, you need to add--static option:

pkg-config --cflags --libs --static arrow

This minimal Makefile file compiles a my_example.cc source file into an executable linked with the Arrow C++ shared library:

my_example: my_example.cc (CXX)−o(CXX) -o (CXX)o@ (CXXFLAGS)(CXXFLAGS) (CXXFLAGS)< (pkg-config --cflags --libs arrow)

Many build systems support pkg-config. For example:

Available packages#

The Arrow C++ provides a pkg-config package for each module. Here are all available packages:

A Note on Linking#

Some Arrow components have dependencies that you may want to use in your own project. Care must be taken to ensure that your project links the same version of these dependencies in the same way (statically or dynamically) as Arrow, else ODR violations may result and your program may crash or silently corrupt data.

In particular, Arrow Flight and its dependencies Protocol Buffers (Protobuf) and gRPC are likely to cause issues. When using Arrow Flight, note the following guidelines:

It may be easiest to depend on a version of Arrow built from source, where you can control the source of each dependency and whether it is statically or dynamically linked. See Building Arrow C++ for instructions. Or alternatively, use Arrow from a package manager such as Conda or vcpkg which will manage consistent versions of Arrow and its dependencies.

Runtime Dependencies#

While Arrow uses the OS-provided timezone database on Linux and macOS, it requires a user-provided database on Windows. You must download and extract the text version of the IANA timezone database and add the Windows timezone mapping XML. To download, you can use the following batch script:

curl https://data.iana.org/time-zones/releases/tzdata2021e.tar.gz --output tzdata.tar.gz mkdir tzdata tar --extract --file tzdata.tar.gz --directory tzdata move tzdata %USERPROFILE%\Downloads\tzdata @rem Also need Windows timezone mapping curl https://raw.githubusercontent.com/unicode-org/cldr/master/common/supplemental/windowsZones.xml ^ --output %USERPROFILE%\Downloads\tzdata\windowsZones.xml

By default, the timezone database will be detected at %USERPROFILE%\Downloads\tzdata, but you can set a custom path at runtime in arrow::ArrowGlobalOptions:

arrow::GlobalOptions options; options.timezone_db_path = "path/to/tzdata"; ARROW_RETURN_NOT_OK(arrow::Initialize(options));