feat: new cookbook for data movement#15
Merged
Merged
Conversation
esadek
requested changes
Apr 29, 2026
| "cell_type": "markdown", | ||
| "id": "d9e9e7af", | ||
| "metadata": {}, | ||
| "source": "## Takeaways\n\nWhile the above example moved only 344 rows of data between our two databases, it illustrates an important point that can be extrapolated to data of any scale: ADBC is a fast but also uniform API for not only connecting to databases but also connecting databases together. Without a standard interface like ADBC, every pair of databases you wanted to move data between would need a separate solution. In a world with ADBC, you only need two ADBC drivers and a little bit of Python (or your language of choice) code." |
Collaborator
There was a problem hiding this comment.
It would be cool to actually use a dataset that doesn't fit in memory.
Member
Author
|
I removed the outputs. GizmoSQL doesn't start up fast so to make the notebook runnable with nbconvert I'd have to add a code cell I'd rather not. It looks like the other examples don't have any similar logic so maybe this is fine? |
Member
Author
|
Hi @esadek do you want to take a look again? I fixed the issues and I re-ran all the cells and selectively kept just the output I think we want in the final output. |
esadek
approved these changes
May 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I keep seeing people not getting my favorite point about ADBC: The RecordBatchReader-as-a-service. Here's an attempt.