Conversation
New `rustream ingest` subcommand reads Parquet/CSV files from local filesystem or S3 and writes them to Postgres via batch INSERT/UPSERT. Supports write modes (insert, upsert, truncate_insert), auto table creation from file schema, glob-based file discovery, and SQLite-based ingestion tracking to avoid reprocessing.
Iceberg incremental tests
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.
Summary
This PR adds Apache Iceberg support to
rustreamand includes an ingest path for loading S3/local data into Postgres.It is rebased on top of reliability improvements from
main(idempotent incremental checkpoints + composite cursor paging).What’s included
syncpath supportsformat = icebergmainpreservedImportant behavior note
incremental_column+incremental_tiebreaker_column) and checkpointed progress state.Files to review first
src/iceberg.rssrc/catalog.rssrc/sync.rssrc/main.rssrc/config.rsREADME.mdValidation performed
cargo fmtcargo testRisk / follow-up