-
Notifications
You must be signed in to change notification settings - Fork 84
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
NFS-safe Dependency Manager #3861
Conversation
@@ -53,6 +98,9 @@ class DependencyManager(StateTransitioner, BaseDependencyManager): | |||
# the data format of how we store this) | |||
MAX_SERIALIZED_LEN = 60000 | |||
|
|||
# If it has been this long since a worker has downloaded anything, another worker will take over downloading. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do additional testing:
- run bundles on workers A, B, C that all share cache
- force kill worker A while it's downloading a dependency
- see how long it takes the dependency to be re-downloaded by B or C
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you do this yet @teetone ?
@@ -53,6 +98,9 @@ class DependencyManager(StateTransitioner, BaseDependencyManager): | |||
# the data format of how we store this) | |||
MAX_SERIALIZED_LEN = 60000 | |||
|
|||
# If it has been this long since a worker has downloaded anything, another worker will take over downloading. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you do this yet @teetone ?
@teetone Let me know once this is ready to merge |
Reasons for making this change
Use flufl.lock to create an NFS-safe Dependency Manager.
Related issues
Resolves #3710
Checklist