You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We'd like to apply updates to the compaction job tracker in batches, rather than needing to apply them one at a time.
This should speed up tracking commits of finished compaction jobs.
Analysis
This is in DynamoDBCompactionJobTracker.
We can adjust the interface for CompactionJobTracker to be able to take a list of events, instead of just one at a time. Another alternative would be an implementation of CompactionJobTracker that gathers the events and has a separate method to commit the gathered events to DynamoDB.
The text was updated successfully, but these errors were encountered:
Background
Split from:
Description
We'd like to apply updates to the compaction job tracker in batches, rather than needing to apply them one at a time.
This should speed up tracking commits of finished compaction jobs.
Analysis
This is in DynamoDBCompactionJobTracker.
We can adjust the interface for CompactionJobTracker to be able to take a list of events, instead of just one at a time. Another alternative would be an implementation of CompactionJobTracker that gathers the events and has a separate method to commit the gathered events to DynamoDB.
The text was updated successfully, but these errors were encountered: