-
Notifications
You must be signed in to change notification settings - Fork 0
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
Arrow Format #5
Comments
👋 Hello! To stream DuckDB query results using the ARROW IPC format, you can use the Here is an example of how to achieve this:
For more detailed information and additional options, refer to the DuckDB documentation on the C++ API and Arrow integration:
|
In DuckDB Arrow support is provided by an extension. DuckDB Arrow ExtensionThis is a DuckDB extension that provides features that need a dependency on the Apache Arrow library. Features
We want to use the |
👋 Hello! To use the Step 1: Install the Arrow ExtensionFirst, you need to install the Arrow extension. This can be done by setting the repository endpoint to the HTTP URL of the bucket containing the extension and then installing it. -- Set the repository endpoint
INSTALL httpfs;
-- Set the repository URL
SET repository='https://example.com/duckdb-extensions';
-- Install the Arrow extension
INSTALL arrow; Step 2: Load the Arrow ExtensionAfter installation, you need to load the Arrow extension to use its functions. LOAD arrow; Step 3: Use the
|
How can we stream DuckDB query results using the ARROW IPC format?
The text was updated successfully, but these errors were encountered: