Skip to content
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

[batch] Create pool scheduling loops after loading existing instances #11766

Merged
merged 2 commits into from
Apr 21, 2022

Conversation

daniel-goldstein
Copy link
Contributor

@daniel-goldstein daniel-goldstein commented Apr 14, 2022

Currently, tasks to schedule new instances are put on the event loop inside the Pool and JobPrivateInstanceManager constructors. Pool.create and JobPrivateInstanceManager.create first instantiate an object of their respective type and then load existing instances from the database into the in-memory instance collection. This could potentially cause the create instances loop to trigger while we're drawing "existing" instances, which causes the assertion error in https://github.com/hail-is/hail-tasks/issues/24 when the create instances loop and load instances query race to add the instance to the in-memory data structure.

This change moves the task creation from the constructor to the create method, so we don't start creating instances until all existing instances are accounted for. I think I would have liked to simply pass the constructor a list of instances, but we can't create an Instance without an InstanceCollection.

Resolves hail-is/hail-tasks#24

I also threw in a bit of cleanup, i.e. removing some variable assignments that didn't seem very helpful and resolving a lint issue where we used items where we could just use values.

@daniel-goldstein
Copy link
Contributor Author

@danking bump

Copy link
Contributor

@danking danking left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

love it

@danking danking merged commit e1cc5c9 into hail-is:main Apr 21, 2022
CDiaz96 pushed a commit to CDiaz96/hail that referenced this pull request Apr 27, 2022
…hail-is#11766)

* cleaning

* [batch] Create pool scheduling loops after loading existing instances
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants