Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Jira ticket here.
A new Celery queue for the Geospatial feature has been added. Currently, there is only one task planned to be run on this queue, which is related to this PR. This task was originally set to run as a serial task on the
background_queue
, however it takes very long to process a lot of cases. Given how long it takes, and that it is a serial task, any domains that are queued up for the task are highly likely to fail from getting locked out of the task for too long.Adding a new Celery queue will resolve the issue mentioned above by allowing the Geospatial Celery task to be run in parallel without the risk of blocking up something like the
background_queue
. A concurrency of 1 has been chosen since we do not expect more than a few of the Celery tasks to be fired off at any given time. Additionally, this is a task that we expect to be run quite infrequently since it is only run when the Geospatial feature is enabled for a domain.Environments Affected
This touches all environments.