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

Core: Add update event for rewrite manifests #12627

Merged
merged 1 commit into from
Mar 24, 2025

Conversation

bryanck
Copy link
Contributor

@bryanck bryanck commented Mar 24, 2025

The rewrite manifests snapshot producer is the only one that does not generate an update event, thus listeners are not notified when a rewrite manifest occurs. This PR adds an update event for rewrite manifests.

@bryanck bryanck requested review from nastra and danielcweeks March 24, 2025 00:38
@github-actions github-actions bot added the core label Mar 24, 2025
@bryanck bryanck force-pushed the rw-manifest-event branch from 1df4dbe to 1ec22e5 Compare March 24, 2025 01:24
@bryanck bryanck force-pushed the rw-manifest-event branch from 1ec22e5 to a9b17d5 Compare March 24, 2025 01:37
assertThat(report.tableName()).isEqualTo(tableName);

CommitMetricsResult metrics = report.commitMetrics();
Copy link
Contributor

Choose a reason for hiding this comment

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

I'd probably change this to

CommitMetricsResult metrics = report.commitMetrics();
assertThat(metrics.totalDataFiles().value()).isEqualTo(2L);
assertThat(metrics.totalRecords().value()).isEqualTo(2L);
assertThat(metrics.totalFilesSizeInBytes().value()).isEqualTo(20L);

so that we at least check that some metrics were recorded

Copy link
Contributor

Choose a reason for hiding this comment

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

I'm fine with the PR as-is. I'll follow up in a separate PR to add proper commit metrics for manifests kept/created/replaced

Copy link
Contributor

Choose a reason for hiding this comment

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

@bryanck I've opened #12630 to address ^

@nastra nastra merged commit 6bd6887 into apache:main Mar 24, 2025
42 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants