-
-
Notifications
You must be signed in to change notification settings - Fork 740
Description
I ran dask scheduler as dask-scheduler --scheduler-file /users/ddd/workspace/fff/tmp/scheduler.json and scheduler.json was created file in that directory
and here are contents of scheduler.json:
{
"type": "Scheduler",
"id": "Scheduler-695028c5-521c-455b-a4f7-a84dcbc35c8e",
"address": "tcp://***:8786",
"services": {
"bokeh": 8787
},
...
}
also, dask-worker --scheduler-file /users/ddd/workspace/fff/tmp/scheduler.json
I try to connect client to dask scheduler in network file system using below code:
client = Client(scheduler_file='/users/ddd/workspace/fff/tmp/scheduler.json')
but it doesn't work (no any response or it may be in infinite loop).
I think client can't connect to dask-scheduler. However, I don't know how to solve this problem...
How can I solve this problem? Is there anyone who had similar problem?