DEV: Increase embeddings backfill job frequency (#453)
The idea is to increase the frequency so we can run with smaller batch sizes. Big batches cause problems when running backups, so it's better to have shorter but more frequent jobs.
This commit is contained in:
parent
dcafc8032f
commit
fd6fcfdb61
|
@ -2,7 +2,7 @@
|
|||
|
||||
module Jobs
|
||||
class EmbeddingsBackfill < ::Jobs::Scheduled
|
||||
every 15.minutes
|
||||
every 5.minutes
|
||||
sidekiq_options queue: "low"
|
||||
cluster_concurrency 1
|
||||
|
||||
|
|
Loading…
Reference in New Issue