You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following some discussions in dask/distributed#4421. I've implemented a worker plugin that calls azure metadata service to check for node eviction in AKS and try to shut down workers as cleanly as possible. @jacobtomlinson suggested I contribute it to this repo in dask/distributed#4421 (comment) somewhere in dask_cloudprovider.azure.utils.
Before opening an MR I would like some pointers on where to put the actual code and the associated documentation.
Thank you.
The text was updated successfully, but these errors were encountered:
I would suggest your Azure code goes in a file called dask_cloudprovider/azure/utils.py with a top-level import in dask_cloudprovider/azure/__init__.py to enable from dask_cloudprovider.azure import PreemptiveWorkerPlugin or whatever you call the class.
Docs should be in the docstring of the class and then exposed in doc/source/azure.rst via an autoclass:: directive.
Hi !
Following some discussions in dask/distributed#4421. I've implemented a worker plugin that calls azure metadata service to check for node eviction in AKS and try to shut down workers as cleanly as possible. @jacobtomlinson suggested I contribute it to this repo in dask/distributed#4421 (comment) somewhere in
dask_cloudprovider.azure.utils
.Before opening an MR I would like some pointers on where to put the actual code and the associated documentation.
Thank you.
The text was updated successfully, but these errors were encountered: