Skip to content

[doc][core] fix reStructuredText formatting on Resources page #53882

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions doc/source/ray-core/scheduling/resources.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ By default, logical resources are configured by the following rule.

Ray **does not permit dynamic updates of resource capacities after Ray has been started on a node**.

- **Number of logical CPUs (``num_cpus``)**: Set to the number of CPUs of the machine/container.
- **Number of logical GPUs (``num_gpus``)**: Set to the number of GPUs of the machine/container.
- **Memory (``memory``)**: Set to 70% of "available memory" when ray runtime starts.
- **Object Store Memory (``object_store_memory``)**: Set to 30% of "available memory" when ray runtime starts. Note that the object store memory is not logical resource, and users cannot use it for scheduling.
- **Number of logical CPUs** (``num_cpus``): Set to the number of CPUs of the machine/container.
- **Number of logical GPUs** (``num_gpus``): Set to the number of GPUs of the machine/container.
- **Memory** (``memory``): Set to 70% of "available memory" when ray runtime starts.
- **Object Store Memory** (``object_store_memory``): Set to 30% of "available memory" when ray runtime starts. Note that the object store memory is not logical resource, and users cannot use it for scheduling.

However, you can always override that by manually specifying the quantities of pre-defined resources and adding custom resources.
There are several ways to do that depending on how you start the Ray cluster:
Expand Down