-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Iceberg performance improvement #11182
Open
skrydal
wants to merge
41
commits into
datahub-project:master
Choose a base branch
from
skrydal:iceberg_performance
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+818
−152
Open
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
437038a
Initial approach to boosting and measuring iceberg performance
skrydal 6e62afe
Fixing catalog init
skrydal 71e8990
Linting
skrydal f8881f0
Linting
skrydal a099eea
Removing unused import
skrydal 7b51e21
Merge branch 'datahub-project:master' into iceberg_performance
skrydal 71baf6f
Added warning comment, TODO
skrydal b04324d
Improving parallel handling, added verbosity
skrydal a7c842f
Linting
skrydal 0320a23
Merge branch 'master' into iceberg_performance
skrydal 63457cc
Better logging
skrydal 0309a00
Improving error handling
skrydal 598d1d2
Linting
skrydal 1b2d6e7
Commenting out a sleep
skrydal eda1ee6
Back to thread local
skrydal 7ab737f
Merge branch 'master' into iceberg_performance
skrydal 609eddf
Merge branch 'master' into iceberg_performance
skrydal 75851fb
Added graceful handling of some errors
skrydal 750508c
Merge branch 'master' into iceberg_performance
skrydal 15c3a1d
Increased verbosity for listing namespaces
skrydal 47ee246
Added threading info dump
skrydal fad02ec
Merge branch 'master' into iceberg_performance
skrydal a297551
Merge branch 'master' into iceberg_performance
skrydal 0c53eb8
Reverting exhaustive logging in threaded executor
skrydal f5489cf
Reducing verbosity
skrydal 43e703e
Further improvements
skrydal 5649bcc
Removed unused import
skrydal 0f9d412
Linting
skrydal d88f739
Merge branch 'master' into iceberg_performance
skrydal aeca08d
Merge branch 'master' into iceberg_performance
skrydal da7cf6b
Merge branch 'master' into iceberg_performance
skrydal 7bafba9
Merge branch 'master' into iceberg_performance
skrydal 172a5e5
Introduced integration tests using multiple threads, removed overly
skrydal 717a6ec
Minor linting
skrydal 01ec9aa
More robust unit tests
skrydal 8149340
Merge branch 'master' into iceberg_performance
skrydal e6b0d36
More tests
skrydal 46c10cc
Changing logging to f-strings and adding missing typing info
skrydal 733ed5a
Added handling of exceptions while listing tables for namespaces
skrydal f9ac4c7
Added handling of exceptions when listing tables
skrydal 3ae97a2
Extended reporting
skrydal File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this needed? Why not just pass catalog to _process_dataset?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Catalog object can not be used across threads (at least not for every catalog type).