Uh oh!
There was an error while loading. Please reload this page.
[14.0] [ADD] queue_job_batch_size - #566
Conversation
b46ee67 to
4c78c0eCompare4c78c0e to
210f952Compare
amh-mw
left a comment
There was a problem hiding this comment.
This generally feels like it should be an improvement to queue_job_batch, not its own module. I'm setting up a local test environment today and will report back with observations.
| channel=None, | ||
| identity_key=None, | ||
| batch_size=None, | ||
| batch_count=None, |
There was a problem hiding this comment.
This seems straightforward enough, but the corresponding change to def delayable is missing.
There hasn't been any activity on this pull request in the past 4 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. |
@paradoxxxzero shall we close this one in favor of #658 ? |
This module allows to seemlessly split a big job into smaller jobs.
It uses
queue_job_batchto group the created jobs into a batch.Example:
This will create 34 jobs, each one copying 30 partners (except the last one which will copy 10) and will group them into a batch.
Instead of
batch_size, one can also usebatch_countto specify the number of batches to create instead.