#dask error. Unable to reach tcp ip Timed out try...
# ask-community
s
#dask error. Unable to reach tcp ip Timed out trying to connect to tcp://172.16.0.5:8786 after 30 s while executing
Copy code
executor = DaskExecutor(address="<tcp://127.0.0.1:8787>")
flow.run(executor=executor)
a
@sarika gowtham if this is your Dask URL, perhaps you can try setting it explicitly?
Copy code
executor = DaskExecutor(address="<tcp://172.16.0.5:8786>")
flow.run(executor=executor)