Replies: 1 comment
-
We typically organize help around usage related questions on discourse. Could you please repost your question there? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My system has 4 CPU, 16 GB RAM. My Aim is to deploy dask distributed workers that use 1 CPU each ONLY to run code assigned to them.
I am deploying a scheduler container and worker containers using docker to run a code that uses Dask delayed and dask dataframes.
Following are the Docker run commands for both:
Scheduler
worker (multiple docker run commands tried, all different combinations of following command)
Now what I wanted was that when dask.compute(scheduler="processes") is run, the worker will use only 1 cpu for running the code. However, atleast 3 CPU can be seen at 100% capacity.
Is there something I have missed?
How could I limit a distributed worker to use ONLY 1 CPU for this compute work?
Beta Was this translation helpful? Give feedback.
All reactions