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

Improve the DynamicFlushScheduler #1789

Open
ericallam opened this issue Mar 12, 2025 · 0 comments · May be fixed by #1792
Open

Improve the DynamicFlushScheduler #1789

ericallam opened this issue Mar 12, 2025 · 0 comments · May be fixed by #1792

Comments

@ericallam
Copy link
Member

The very poorly named DynamicFlushScheduler , used by the EventRepository in the webapp schedules the "flushing" of the TaskEvent data in the EventRepository to the database, to do the inserts in batches instead of one at a time. It currently has a batch size limit, that when reached, will flush, and it will also flush on an interval so every X seconds a flush happens, even if the limit is not reached.

Currently the DynamicFlushScheduler does not actually limit the amount of items flushed, so a large batch can come through at once and then flushed. For example, lets say the DynamicFlushSchedule batch size limit is 100, and 99 items are currently waiting to be flushed. If 1000 items are then added via addToBatch, then the next flush will have 1099 items in it, which isn't what we want.

I think this needs to be able to support concurrent flushes, up to a certain concurrent limit (using something like p-limit). It also needs to handle making sure batches are flushed on SIGTERM, before the process shuts down. It should report metrics to the /metrics endpoint, and should probably have some better logging.

All this should be done while adding tests.

@mpxr mpxr linked a pull request Mar 13, 2025 that will close this issue
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant