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
---------------------------------------------------------------------------
GatewayClusterError Traceback (most recent call last)
<ipython-input-5-204c3b2f219b> in <module>
1 from dask.distributed import Client
2 from dask_gateway import GatewayCluster
----> 3 cluster = GatewayCluster()
4 cluster.adapt(minimum=1, maximum=10)
5 cluster
/srv/conda/envs/notebook/lib/python3.7/site-packages/dask_gateway/client.py in __init__(self, address, proxy_address, public_address, auth, cluster_options, shutdown_on_close, asynchronous, loop, **kwargs)
816 shutdown_on_close=shutdown_on_close,
817 asynchronous=asynchronous,
--> 818 loop=loop,
819 )
820
/srv/conda/envs/notebook/lib/python3.7/site-packages/dask_gateway/client.py in _init_internal(self, address, proxy_address, public_address, auth, cluster_options, cluster_kwargs, shutdown_on_close, asynchronous, loop, name)
912 self.status = "starting"
913 if not self.asynchronous:
--> 914 self.gateway.sync(self._start_internal)
915
916 @property
/srv/conda/envs/notebook/lib/python3.7/site-packages/dask_gateway/client.py in sync(self, func, *args, **kwargs)
337 )
338 try:
--> 339 return future.result()
340 except BaseException:
341 future.cancel()
/srv/conda/envs/notebook/lib/python3.7/concurrent/futures/_base.py in result(self, timeout)
433 raise CancelledError()
434 elif self._state == FINISHED:
--> 435 return self.__get_result()
436 else:
437 raise TimeoutError()
/srv/conda/envs/notebook/lib/python3.7/concurrent/futures/_base.py in __get_result(self)
382 def __get_result(self):
383 if self._exception:
--> 384 raise self._exception
385 else:
386 return self._result
/srv/conda/envs/notebook/lib/python3.7/site-packages/dask_gateway/client.py in _start_internal(self)
926 self._start_task = asyncio.ensure_future(self._start_async())
927 try:
--> 928 await self._start_task
929 except BaseException:
930 # On exception, cleanup
/srv/conda/envs/notebook/lib/python3.7/site-packages/dask_gateway/client.py in _start_async(self)
944 # Connect to cluster
945 try:
--> 946 report = await self.gateway._wait_for_start(self.name)
947 except GatewayClusterError:
948 raise
/srv/conda/envs/notebook/lib/python3.7/site-packages/dask_gateway/client.py in _wait_for_start(self, cluster_name)
576 raise GatewayClusterError(
577 "Cluster %r failed to start, see logs for "
--> 578 "more information" % cluster_name
579 )
580 elif report.status is ClusterStatus.STOPPED:
GatewayClusterError: Cluster 'prod.48dff004b196404b8dc63f21fc9c4459' failed to start, see logs for more information
I am able to run the full example when I clone it to the pangeo cloud on google, so I assume this is a problem with the binder environment? But I am generally not that familiar with these mechanisms yet. I would like to use this for an interactive demo tomorrow, so any pointers is greatly appreciated.
The text was updated successfully, but these errors were encountered:
I just tried to run the sea surface height example in the physical oceanography gallery.
In the cell where the dask gateway cluster is requested:
I am getting the following error:
I am able to run the full example when I clone it to the pangeo cloud on google, so I assume this is a problem with the binder environment? But I am generally not that familiar with these mechanisms yet. I would like to use this for an interactive demo tomorrow, so any pointers is greatly appreciated.
The text was updated successfully, but these errors were encountered: