From the documentation Resources — Ray 2.5.1,
by default, actors cannot get scheduled on a zero-cpu node, but an infinite number of them can run on any non-zero cpu node.
Can you elaborate it? Why would an actor be running on a node if it cannot be scheduled on it?
And I’m setting the head node to have zero cpu as suggested in the cluster config: RayCluster Configuration — Ray 2.5.1
Does it mean that the head node is only used to run the driver code but not the actual task, i.e. the function/class decorated by remote?