kpcyrd / rebuilderd

Independent verification of binary packages - reproducible builds
GNU General Public License v3.0
352 stars 23 forks source link

Delete orphaned builds in batches #131

Closed kpcyrd closed 2 years ago

kpcyrd commented 2 years ago

There's a background job for cleanup that's likely looking up the database for extended periods of time:

https://github.com/kpcyrd/rebuilderd/blob/8ff458ff71381db01e1fba8abe01e974c7eacbf4/daemon/src/lib.rs#L36

This could be split up so the select is executed on its own, and the deletes are executed in batches, so each delete locks up the database briefly instead of locking it once for a long time.

kpcyrd commented 2 years ago

Done in #137