thread-master/apps/backend/generate/database/mongo/000008_worker_indexes.up.json

29 lines
575 B
JSON

[
{
"createIndexes": "jobs",
"indexes": [
{
"key": { "status": 1, "run_after": 1, "created_at": 1 },
"name": "claim_due_jobs"
},
{
"key": { "status": 1, "completed_at": 1 },
"name": "purge_terminal_jobs"
}
]
},
{
"createIndexes": "studio_outbox",
"indexes": [
{
"key": { "status": 1, "updated_at": 1 },
"name": "worker_outbox_status_updated"
},
{
"key": { "owner_uid": 1, "updated_at": -1 },
"name": "owner_outbox_updated"
}
]
}
]