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

feat(ingest/s3): use latest file to infer schema metadata #7202

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions metadata-ingestion/src/datahub/ingestion/source/s3/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -752,6 +752,9 @@ def get_workunits(self) -> Iterable[MetadataWorkUnit]:
table_dict[table_data.table_path].timestamp
< table_data.timestamp
):
table_dict[
jjoyce0510 marked this conversation as resolved.
Show resolved Hide resolved
table_data.table_path
].full_path = table_data.full_path
table_dict[
table_data.table_path
].timestamp = table_data.timestamp
Expand Down