-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Storage Service Connect , path specification #27408
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
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
e37ffd6
Storage Service Connect , path specification and manifest file deprec…
harshach a8978c3
Storage Service Connect , path specification and manifest file deprec…
harshach 889d2bb
Update generated TypeScript types
github-actions[bot] 951b70e
Storage Service Connect , path specification and manifest file deprec…
harshach 2548b53
Merge remote-tracking branch 'origin/storage_wildcard' into storage_w…
harshach 385b068
Storage Service Connect , path specification and manifest file deprec…
harshach 960482a
Update generated TypeScript types
github-actions[bot] 4922a2d
Merge branch 'main' into storage_wildcard
harshach 5131349
Address comments
harshach b67a4bf
Address comments
harshach 13c90e1
Add tests
harshach 1d0f70a
Add tests
harshach 6ec8edf
Update generated TypeScript types
github-actions[bot] c6fd6a3
Add UI support for manifest config
harshach 276fb5f
Merge remote-tracking branch 'origin/storage_wildcard' into storage_w…
harshach 3c66792
Improve manifest support for storage services
harshach 953686f
Merge branch 'main' into storage_wildcard
harshach 8e93095
Address comments
harshach 26228c8
Fix #24823: containerFilterPattern and include/exclude Not work
harshach cfe4acb
Merge remote-tracking branch 'origin/storage_wildcard' into storage_w…
harshach fbb1723
Update generated TypeScript types
github-actions[bot] 16d93cf
Address commments
harshach db85dab
Merge remote-tracking branch 'origin/main' into storage_wildcard
harshach a3486c9
Address commments
harshach bb49d68
Merge remote-tracking branch 'origin/storage_wildcard' into storage_w…
harshach 1f658de
fix partiion column type conversion error
ulixius9 1b5fbe5
merge main resolve conflict
ulixius9 180ab49
Address comments
harshach 11e54ab
Update generated TypeScript types
github-actions[bot] 36ce395
Address comments on manifest widget
harshach deb79d1
Merge remote-tracking branch 'origin/storage_wildcard' into storage_w…
harshach 128cf6b
merge main resolve conflict
ulixius9 324263a
address comments
ulixius9 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 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
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
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.
S3Source.list_keyscurrently yields keys for all non-directory objects under the prefix, including Spark/Delta/Hadoop sentinel artifacts (e.g._SUCCESS.crc,_committed_*,.crcsidecars). Since glob expansion (and especiallyunstructuredData: true) can turn matched keys directly into containers, it’s safer to filter these artifacts at the listing stage as well (e.g.,if is_excluded_artifact(key): continue) so they never participate in glob matching/grouping.