Apache Arrow 使用

下述操作参考 Building Arrow C++ --- Apache Arrow v20.0.0.dev267

安装依赖组件

bash 复制代码
sudo apt-get install \
     build-essential \
     ninja-build \
     cmake

下载源码

bash 复制代码
git clone --recursive --shallow-submodules git@github.com:apache/arrow.git

配置

创建build目录并且进入

bash 复制代码
mkdir arrow/cpp/build
cd arrow/cpp/build

执行cmake

bash 复制代码
cmake .. \
    -DCMAKE_INSTALL_PREFIX=/usr/local \
    -DARROW_BUILD_STATIC=ON \
    -DARROW_BUILD_SHARED=ON \
    -DARROW_COMPUTE=ON \
    -DARROW_CSV=ON \
    -DARROW_DATASET=ON \
    -DARROW_FILESYSTEM=ON \
    -DARROW_JSON=ON \
    -DARROW_PARQUET=ON

构建

bash 复制代码
cmake --build . --config Release --parallel $(nproc)

安装

相关推荐
软件派3 小时前
Apache Paimon终极教程——流批一体存储引擎深度解析(附Flink集成案例+性能调优代码)
apache·性能调优·流批一体·实时数据处理·paimon教程·flink集成·湖仓架构
三水不滴5 小时前
Apache RocketMQ的原理与实践
经验分享·apache·rocketmq
whale fall19 小时前
celery -A tool.src.main worker --loglevel=info --queues=worker1_queue & 什么意思
python·学习·apache
TracyCoder1231 天前
ElasticSearch核心引擎Apache Lucene(五):相关性算分 (Scoring)
elasticsearch·apache·lucene
码上上班1 天前
一文学会apache httpd
apache
野生技术架构师1 天前
Spring Boot 3 集成 Apache Calcite:多数据源查询的终极解决方案
spring boot·后端·apache
TracyCoder1232 天前
ElasticSearch核心引擎Apache Lucene(四):段 (Segment) 的设计与合并
elasticsearch·apache·lucene
TracyCoder1232 天前
ElasticSearch核心引擎Apache Lucene(三):数值与空间数据索引
elasticsearch·apache·lucene
Elastic 中国社区官方博客2 天前
Elasticsearch:Apache Lucene 2025 年终总结
大数据·人工智能·elasticsearch·搜索引擎·apache·lucene
TracyCoder1232 天前
ElasticSearch核心引擎Apache Lucene(二):正排索引的奥秘
elasticsearch·apache·lucene