forked from apache/iceberg
-
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
streaming update #2
Closed
Closed
Conversation
This file contains 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
jasonf20
force-pushed
the
streaming-update
branch
2 times, most recently
from
December 11, 2023 18:01
4ffaa15
to
95a9014
Compare
jasonf20
force-pushed
the
streaming-update
branch
3 times, most recently
from
December 11, 2023 19:40
00ed64d
to
c00eeb8
Compare
jasonf20
force-pushed
the
streaming-update
branch
from
December 12, 2023 08:17
5259c5c
to
6c86f5d
Compare
jasonf20
force-pushed
the
streaming-update
branch
from
December 12, 2023 08:30
6c86f5d
to
a382b3c
Compare
Co-authored-by: Eduard Tudenhoefner <etudenhoefner@gmail.com>
Co-Authored-By: Jian Tang <jian_tang@apple.com> Co-authored-by: Gidon Gershinsky <ggershinsky@apple.com>
Bumps [org.apache.httpcomponents.client5:httpclient5](https://github.com/apache/httpcomponents-client) from 5.2.3 to 5.3. - [Changelog](https://github.com/apache/httpcomponents-client/blob/master/RELEASE_NOTES.txt) - [Commits](apache/httpcomponents-client@rel/v5.2.3...rel/v5.3) --- updated-dependencies: - dependency-name: org.apache.httpcomponents.client5:httpclient5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Add doc for rewriting manifest with spec id * address a comment * Fix whitespace Co-authored-by: Ajantha Bhat <ajanthabhat@gmail.com> --------- Co-authored-by: Fokko Driesprong <fokko@apache.org> Co-authored-by: Ajantha Bhat <ajanthabhat@gmail.com>
…he#8340) * JDBC catalog fix namespaceExists check * Improve testCreateNamespace test * Improve testCreateNamespace test * Improve testCreateNamespace test * Improve testCreateNamespace test * Improve testCreateNamespace test * Improve testCreateNamespace test * Split tests to testCreateNamespaceWithSpecialCharacter * Organize and split testCreateNamespace tests * Removed test with `.`, and extended testCreateNamespaceWithBackslashCharacter * Add review improvements
Co-authored-by: Brian "bits" Olsen <bits@bitsondata.dev> Co-authored-by: Fokko Driesprong <fokko@apache.org>
jasonf20
force-pushed
the
streaming-update
branch
from
December 15, 2023 10:50
56cd193
to
ce6920b
Compare
This will allow re-using it for insert files for specific data versions in future commits
jasonf20
force-pushed
the
streaming-update
branch
from
December 17, 2023 14:50
ce6920b
to
c763bd4
Compare
This operation allows adding multiple consecutive update in a single commit without equality deletes from prior updates affecting inserts that occurred after it. Before this commit you would need to do something like this: ``` for batch in batches: delta = transaction.newRowDelta() delta.add(batch.deletes) delta.add(batch.inserts) delta.commit() transaction.commit() ``` Which produces many manifest files and is very IO intensive. This operation allows: ``` update = table.newStreamingUpdate() for batch, batchIndex in enumerate(batches): update.newBatch() update.add(batch.deleteFiles) update.add(batch.dataFiles) update.commit() ```
jasonf20
force-pushed
the
streaming-update
branch
from
December 17, 2023 14:52
c763bd4
to
3e67c95
Compare
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.
No description provided.