How severe does this issue affect your experience of using Ray?
- High: It blocks me to complete my task.
Content from documentation: Configuring Ray — Ray 2.9.3
“Port numbers are how Ray disambiguates input and output to and from multiple workers on a single node. Each worker will take input and give output on a single port number. Thus, for example, by default, there is a maximum of 10,000 workers on each node, irrespective of number of CPUs.”
Is it possible to span upto 10000 workers?., Consider I have 32 CPU cores and in normal each worker need one core for execution, so at a time only 32 tasks can execute.
Wanted to know
- What is mentioned as workers here in documentation?
- How many tasks can I hold in queue for next executions?
Can we configure above things while starting ray cluster.? Wanted to know for what purpose ray uses these 10000 ports.
10001 in ray head node will be the listening port from driver program and then, on which port Head node will communicate with other nodes to schedule tasks. I want to know about all Inbound ports in all nodes of ray cluster.