-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix new bulk import queuing #2035
Comments
The above fix is following https://stackoverflow.com/a/19018521, but it causes another issue of the initial task hanging (appears to be waiting for results) instead of returning quickly and executing all subtasks asynchronously. The subtasks do run, but extremely slow... In ECS the worker even fails healthchecks by not responding in time. Locally I just see missed heartbeats for workers. It'a very strange behavior. |
Some smaller packages that I hand-crafted do import correctly... I'll attach them shortly. |
Good thing is that I found celery/celery#5958 and apparently it was fixed in Celery. I upgraded Celery and the initial solution when tasks were repeated endlessly seems no longer to be an issue, but still need to fix the issue with initial task not finishing after scheduling all tasks (probably entering some endless loop). |
When scheduling some NPM packages the import does never end. The problematic package is hl7.fhir.r4.core:4.0.1. It enters an endless loop at the last group of tasks, which are being repeated in a loop.
The text was updated successfully, but these errors were encountered: