-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem or challenge?
output_batches should be a common metric in all operators. If we include it into BaselineMetrics, this can be updated automatically through record_poll() utility:
| self.join_metrics.output_batches.add(1); |
| pub fn record_poll( |
However, now it is only included in the join metrics, and join operators are updating this output_batches metrics manually.
Describe the solution you'd like
- Include
output_batchesmetric intoBaselineMetrics - Update
output_batchesinsiderecord_poll() - Remove all manual
output_batchesupdates inside join operators. (by searching for all occurrences of 'output_batches' in the codebase).
Describe alternatives you've considered
No response
Additional context
No response
alamb and ctsk
Metadata
Metadata
Labels
enhancementNew feature or requestNew feature or request