Bug #14008
closednew index on containers locked_by_uuid
Description
We have added another custom query to our system to deal with slow container lookups (I think these are coming from crunch-dispatch-slurm, but apologies, I have not kept details of the exact queries or how slow they were).
The new index is:
create index index_containers_on_locked_by_uuid on containers (locked_by_uuid);
Updated by Tom Clegg over 6 years ago
- Status changed from New to In Progress
14008-containers-index @ 28cc107d70f7fc6fd05435a49352ac0bcb377657
14008-containers-index @ 2df6f028ca8b1ec3abb6f15eaf949174ccbb8586
Updated by Peter Amstutz over 6 years ago
Tom Clegg wrote:
14008-containers-index @ 28cc107d70f7fc6fd05435a49352ac0bcb377657
Trying to understand the logic for having two indexes:
+ def change + # For the current code in sdk/go/dispatch: + add_index :containers, [:locked_by_uuid, :priority] + # For future dispatchers that use filters instead of offset for + # more predictable paging: + add_index :containers, [:locked_by_uuid, :uuid] + end
The current index is ordered by descending priority. Should it also index on 'state' ?
The future index will be... ordered by uuid? And then sorted on the client side? (or stuffed into some sorted data structure). Don't we still care about state and if priority is > 0. Maybe this is a premature optimization if that query hasn't been written yet?
Updated by Tom Clegg over 6 years ago
Peter Amstutz wrote:
The current index is ordered by descending priority. Should it also index on 'state' ?
A dispatcher doesn't filter on state -- locked_by_uuid≠null implies state∈{Locked,Running} and it wants to get updates in both of those states.
The future index will be... ordered by uuid? And then sorted on the client side? (or stuffed into some sorted data structure). Don't we still care about state and if priority is > 0. Maybe this is a premature optimization if that query hasn't been written yet?
Yes, paging has less weird racy behavior when sorting by uuid (vs. we get page 1; then a container on page 2 gets its priority increased enough to move it to page 1; then we get page 2; ...). Priority sorting can happen on the client side.
A dispatcher doesn't filter on priority>0 -- it needs to know if priority changes to 0 while it has the lock, so it can cancel.
Updated by Peter Amstutz about 6 years ago
Tom Clegg wrote:
Peter Amstutz wrote:
The current index is ordered by descending priority. Should it also index on 'state' ?
A dispatcher doesn't filter on state -- locked_by_uuid≠null implies state∈{Locked,Running} and it wants to get updates in both of those states.
Ok, the [:locked_by_uuid, :priority]
index makes sense for this query, which filters by locked_by_uuid, is ordered by priority descending and paged by offset.
// Containers I currently own (Locked/Running) querySuccess := d.checkForUpdates([][]interface{}{ {"locked_by_uuid", "=", d.auth.UUID}}, todo)
The future index will be... ordered by uuid? And then sorted on the client side? (or stuffed into some sorted data structure). Don't we still care about state and if priority is > 0. Maybe this is a premature optimization if that query hasn't been written yet?
Yes, paging has less weird racy behavior when sorting by uuid (vs. we get page 1; then a container on page 2 gets its priority increased enough to move it to page 1; then we get page 2; ...). Priority sorting can happen on the client side.
Ok, the [:locked_by_uuid, :uuid]
index makes sense.
A dispatcher doesn't filter on priority>0 -- it needs to know if priority changes to 0 while it has the lock, so it can cancel.
There's another dispatcher query that filters by state and priority. I expect we'll need to do something similar in crunch-dispatch-cloud, except paged by uuid instead of offset. Do we want a third index [:state, :priority]
?
// Containers I should try to dispatch querySuccess = d.checkForUpdates([][]interface{}{ {"state", "=", Queued}, {"priority", ">", "0"}}, todo) && querySuccess
Updated by Tom Clegg about 6 years ago
- adds index on (state, (priority>0))
Updated by Peter Amstutz about 6 years ago
Tom Clegg wrote:
14008-containers-index @ b43cf1d3398b7004ada50e053ae235b814c9aa70
- adds index on (state, (priority>0))
Running tests here https://ci.curoverse.com/view/Developer/job/developer-run-tests/865/
Updated by Tom Clegg about 6 years ago
Updated by Tom Clegg about 6 years ago
- Status changed from In Progress to Resolved