Skip to content

Add Apache Arrow as a bulk ingestion format #125040

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

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix API name, remove test warning
  • Loading branch information
swallez committed Mar 22, 2025
commit 44a1b64506c53faa10e22c758221e48d47a9f6c3
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ public void execute(Task t) {
"--add-opens=java.base/java.nio.file=ALL-UNNAMED",
"--add-opens=java.base/java.time=ALL-UNNAMED",
"--add-opens=java.management/java.lang.management=ALL-UNNAMED",
"--add-opens=java.base/java.nio=org.apache.arrow.memory.core,ALL-UNNAMED",
// Arrow (may need to be replaced by org.apache.arrow.memory.core once modularized)
"--add-opens=java.base/java.nio=ALL-UNNAMED",
// Define the allocation manager type to avoid classpath scanning to locate one.
"-Darrow.allocation.manager.type=Unsafe",
"-XX:+HeapDumpOnOutOfMemoryError"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"bulk":{
"arrow.bulk":{
"documentation":{
"url":"https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-bulk.html",
"description":"Allows to perform multiple index/update/delete operations in a single request using the Arrow IPC streaming format."
Expand Down
Loading