closed connection?
See original GitHub issueI am running Dask Cluster on k8s, and just bumped to daskdev/dask:2.8.0 for scheduler, custom image with the below specs for workers.
- dask=2.8.1
- distributed=2.8.1
- dask-glm=0.2.0
- dask-kubernetes=0.9.2
- dask-ml=1.1.1
- dask-xgboost=0.1.9
Both are running python 3.7. My client has the same settings and python, and code below does not show any issues
client = Client('tcp://dask-adaptive-scheduler.staging2.mydomain.cloud:8786')
client.get_versions(check=True);
But when I run the dask_ml.model_selection.RandomizedSearchCV
, my dashboard shows there is no workers. When I check pods, there is a worker called dask-adaptive-dask-workerttlcv, which throws the error below in stdout:
tornado.application - ERROR - Exception in callback <function Worker._register_with_scheduler.<locals>.<lambda> at 0x7f8bb81779d8>
Traceback (most recent call last):
File "/opt/conda/lib/python3.7/site-packages/tornado/ioloop.py", line 907, in _run
return self.callback()
File "/opt/conda/lib/python3.7/site-packages/distributed/worker.py", line 855, in <lambda>
lambda: self.batched_stream.send({"op": "keep-alive"}),
File "/opt/conda/lib/python3.7/site-packages/distributed/batched.py", line 117, in send
raise CommClosedError
where should I dig? Previous version, dask=2.4.0, worked fine with the same k8s settings
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Handling java.sql.SQLRecoverableException: Closed ...
This error message indicates that the connection used by the backup task (or any other long-running operation that relies on a single database ......
Read more >Oracle DB : java.sql.SQLException: Closed Connection
It means the connection was successfully established at some point, but when you tried to commit right there, the connection was no longer...
Read more >"Closed Connection" message - how to fix? — oracle-tech
But when I run 1-4 I receive a “Closed Connection” message which has the effect too of dropping the temp table. with no...
Read more >How to deal with closed connections in database pool
This article explains how to overcome the "connection is closed" error that sometimes is seen on the mule logs when connecting to a...
Read more >Oracle DB: java.sql.SQLException: Closed Connection
The error means that the connection was successfully established at some point, but when you have tried to commit the change, the connection...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
that seems like a different error regardless though. It seems like the original issue here was a non-issue. I’m going to close this. If you think that you’ve come across something new, the let’s raise a new issue.
Then I must be incorrect.
On Wed, Nov 27, 2019 at 11:51 AM Philipp Kats notifications@github.com wrote: