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
Describe the issue:
While the doc says the Client class accepts security argument as bool, the instantiation failed with the following error:
Traceback (most recent call last):
...
irrelevant stacks omitted
...
File "/home/kemove/.pyenv/versions/3.12.2/lib/python3.12/site-packages/distributed/client.py", line 1158, in __init__
raise TypeError("security must be a Security object")
TypeError: security must be a Security object
Intention to disable security: I've been troubleshooting communication errors between worker processes and the scheduler. I'm suspecting that this could be due to TCP timeout and / or secured connection overheads during heavy workload with some noticed CPU IO_WAIT. While I'm trying to balance the workload, I'd like to tweak Dask and the cluster to allow for more resources for the workload. Since my cluster runs on standalone workstation machine I'd like to remove the SSL overhead.
Environment:
Dask version: 2024.12.0
Python version: 3.12.2
Operating System: Ubuntu 22.04.5 LTS
Install method (conda, pip, source): pip
The text was updated successfully, but these errors were encountered:
Describe the issue:
While the doc says the
Client
class acceptssecurity
argument as bool, the instantiation failed with the following error:Minimal Complete Verifiable Example:
Anything else we need to know?:
Intention to disable security: I've been troubleshooting communication errors between worker processes and the scheduler. I'm suspecting that this could be due to TCP timeout and / or secured connection overheads during heavy workload with some noticed CPU IO_WAIT. While I'm trying to balance the workload, I'd like to tweak Dask and the cluster to allow for more resources for the workload. Since my cluster runs on standalone workstation machine I'd like to remove the SSL overhead.
Environment:
The text was updated successfully, but these errors were encountered: