Skip to content
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

[HUDI-7418] Add file extension filter for s3 incr source #10694

Merged
merged 1 commit into from
Feb 19, 2024

Conversation

rmahindra123
Copy link
Contributor

@rmahindra123 rmahindra123 commented Feb 18, 2024

Change Logs

We have support for filter the input files based on an extension (custom) for GCS Incr Source that can be configured. But we don't have the same for the S3 incr source (which always assumes that file extension is same as the format which may not be the case always).

Impact

Low impact

Risk level (write none, low medium or high below)

Low

Documentation Update

Describe any necessary documentation update if there is any new feature, config, or user-facing change

  • The config description must be updated if new configs are added or the default value of the configs are changed
  • Any new feature or user-facing change requires updating the Hudi website. Please create a Jira ticket, attach the
    ticket number here and follow the instruction to make
    changes to the website.

Contributor's checklist

  • Read through contributor's guide
  • Change Logs and Impact were stated clearly
  • Adequate tests were added if applicable
  • CI passed

@hudi-bot
Copy link

CI report:

Bot commands @hudi-bot supports the following commands:
  • @hudi-bot run azure re-run the last Azure build

@codope codope merged commit a3a0103 into apache:master Feb 19, 2024
32 checks passed
filePathSizeAndCommitTime.add(Triple.of("path/to/file2.json", 150L, "1"));
filePathSizeAndCommitTime.add(Triple.of("path/to/file4.json", 50L, "2"));
filePathSizeAndCommitTime.add(Triple.of("path/to/file5.json", 150L, "2"));
filePathSizeAndCommitTime.add(Triple.of(String.format("path/to/file1%s", extension), 100L, "1"));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add a file that does not end with the extension to test the filter?

vinishjail97 pushed a commit to vinishjail97/hudi that referenced this pull request Feb 20, 2024
We have support for filtering the input files based on an extension (custom) for GCS Incr Source that can be configured. But we don't have the same for the S3 incr source (which always assumes that file extension is same as the format which may not be the case always).

Co-authored-by: rmahindra123 <[email protected]>
// add file format filtering by default
filter = filter + " and " + S3_OBJECT_KEY + " like '%" + fileFormat + "%'";
// Match files with a given extension, or use the fileFormat as the fallback incase the config is not set.
if (!StringUtils.isNullOrEmpty(getStringWithAltKeys(props, CLOUD_DATAFILE_EXTENSION, true))) {
Copy link
Contributor

@nsivabalan nsivabalan Feb 20, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we consider moving this to common class and use it across both s3 and gcs ?

yihua pushed a commit that referenced this pull request Feb 27, 2024
We have support for filtering the input files based on an extension (custom) for GCS Incr Source that can be configured. But we don't have the same for the S3 incr source (which always assumes that file extension is same as the format which may not be the case always).

Co-authored-by: rmahindra123 <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants