Skip to content

Commit aefb3b6

Browse files
authored
feat: Add support for remote Parquet HDFS writer with openDAL (#2929)
1 parent 26344c8 commit aefb3b6

File tree

10 files changed

+643
-95
lines changed

10 files changed

+643
-95
lines changed

.github/actions/rust-test/action.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,7 @@ runs:
7070
shell: bash
7171
run: |
7272
cd native
73+
# Set LD_LIBRARY_PATH to include JVM library path for tests that use JNI
74+
export LD_LIBRARY_PATH=${JAVA_HOME}/lib/server:${LD_LIBRARY_PATH}
7375
RUST_BACKTRACE=1 cargo nextest run
7476

native/Cargo.lock

Lines changed: 27 additions & 41 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

native/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ datafusion-functions-nested = { version = "51.0.0" }
9999

100100
[features]
101101
backtrace = ["datafusion/backtrace"]
102-
default = []
102+
default = ["hdfs-opendal"]
103103
hdfs = ["datafusion-comet-objectstore-hdfs"]
104104
hdfs-opendal = ["opendal", "object_store_opendal", "hdfs-sys"]
105105
jemalloc = ["tikv-jemallocator", "tikv-jemalloc-ctl"]

0 commit comments

Comments
 (0)