Key Concepts ============ .. _cluster-key-concepts: This page introduces key concepts for Ray clusters: .. contents:: :local: Ray Cluster ----------- A Ray cluster consists of a single :ref:`head node ` and any number of connected :ref:`worker nodes `: .. figure:: images/ray-cluster.svg :align: center :width: 600px *A Ray cluster with two worker nodes. Each node runs Ray helper processes to facilitate distributed scheduling and memory management. The head node runs additional control processes (highlighted in blue).* The number of worker nodes may be *autoscaled* with application demand as specified by your Ray cluster configuration. The head node runs the :ref:`autoscaler `. .. note:: Ray nodes are implemented as pods when :ref:`running on Kubernetes `. Users can submit jobs for execution on the Ray cluster, or can interactively use the cluster by connecting to the head node and running `ray.init`. See :ref:`Ray Jobs ` for more information. .. _cluster-head-node: Head Node --------- Every Ray cluster has one node which is designated as the *head node* of the cluster. The head node is identical to other worker nodes, except that it also runs singleton processes responsible for cluster management such as the :ref:`autoscaler `, :term:`GCS ` and the Ray driver processes :ref:`which run Ray jobs `. Ray may schedule tasks and actors on the head node just like any other worker node, which is not desired in large-scale clusters. See :ref:`vms-large-cluster-configure-head-node` for the best practice in large-scale clusters. .. _cluster-worker-nodes: Worker Node ------------ *Worker nodes* do not run any head node management processes, and serve only to run user code in Ray tasks and actors. They participate in distributed scheduling, as well as the storage and distribution of Ray objects in :ref:`cluster memory `. .. _cluster-autoscaler: Autoscaling ----------- The *Ray autoscaler* is a process that runs on the :ref:`head node ` (or as a sidecar container in the head pod if :ref:`using Kubernetes `). When the resource demands of the Ray workload exceed the current capacity of the cluster, the autoscaler will try to increase the number of worker nodes. When worker nodes sit idle, the autoscaler will remove worker nodes from the cluster. It is important to understand that the autoscaler only reacts to task and actor resource requests, and not application metrics or physical resource utilization. To learn more about autoscaling, refer to the user guides for Ray clusters on :ref:`VMs ` and :ref:`Kubernetes `. .. note:: Version 2.10.0 introduces the alpha release of Autoscaling V2 on KubeRay. Discover the enhancements and configuration details :ref:`here `. .. _cluster-clients-and-jobs: Ray Jobs -------- A Ray job is a single application: it is the collection of Ray tasks, objects, and actors that originate from the same script. The worker that runs the Python script is known as the *driver* of the job. There are two ways to run a Ray job on a Ray cluster: 1. (Recommended) Submit the job using the :ref:`Ray Jobs API `. 2. Run the driver script directly on any node of the Ray cluster, for interactive development. For details on these workflows, refer to the :ref:`Ray Jobs API guide `. .. figure:: images/ray-job-diagram.svg :align: center :width: 650px *Two ways of running a job on a Ray cluster.*