-
Notifications
You must be signed in to change notification settings - Fork 3k
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
fix(ingest/s3): Not sorting schema fields to keep original order #9349
fix(ingest/s3): Not sorting schema fields to keep original order #9349
Conversation
Adding way to enable ** in path_spec include
@@ -63,6 +63,11 @@ class Config: | |||
description="Not listing all the files but only taking a handful amount of sample file to infer the schema. File count and file size calculation will be disabled. This can affect performance significantly if enabled", | |||
) | |||
|
|||
allow_double_stars: bool = Field( |
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 double star supported on all sources that use path spec? do we have tests on the data lake source that test the ** behavior for includes?
I know it always works in the exclude paths, but not include iirc
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.
Double star is a valid glob pattern and whichever source support glob, it should support double star as well.
Not sorting schema fields to keep original order
Adding way to enable ** in path_spec include
Checklist