Closed
Conversation
4ffaa15 to
95a9014
Compare
00ed64d to
c00eeb8
Compare
5259c5c to
6c86f5d
Compare
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>
56cd193 to
ce6920b
Compare
This will allow re-using it for insert files for specific data versions in future commits
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()
```
c763bd4 to
3e67c95
Compare
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.
No description provided.