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
Using SGE and wanting to initialize dask fully from python.
My main node is dual-homed, with 1G and 10G interfaces. The 10G is the one that my SGE cluster uses.
fromdask_drmaaimportDRMAAClusterfromdask.distributedimportClientIn [9]: cluster=DRMAACluster(hostname='master-10g')
INFO:dask_drmaa.core:Startlocalscheduleratmaster-10gIn [10]: cluster.scheduler_addressOut[10]: 'tcp://10.22.150.194:37386' . # this is the master-1g IP, not the one I want
Meanwhile, the workers are spinning trying to connect to the 1G IP:
tail worker.23523.1.err
distributed.worker - INFO - Trying to connect to scheduler: tcp://10.22.150.194:37386
Can this be extended to allow one to specify the scheduler interface / hostname / IP to give to the workers?
Using SGE and wanting to initialize dask fully from python.
My main node is dual-homed, with 1G and 10G interfaces. The 10G is the one that my SGE cluster uses.
Meanwhile, the workers are spinning trying to connect to the 1G IP:
Can this be extended to allow one to specify the scheduler interface / hostname / IP to give to the workers?