@@ -648,20 +648,20 @@ def debug(address: str, verbose: bool):
648648 "--system-reserved-cpu" ,
649649 required = False ,
650650 type = float ,
651- help = "The amount of cpu cores to reserve for ray system processes. Cores can be "
652- "fractional i.e. 0 .5 means half a cpu core. "
653- "By default, the min of 20% and 1 core will be reserved. "
654- "Must be >= 0.5 and < total number of available cores. "
655- "This option only works if --enable-resource-isolation is set." ,
651+ help = "The number of cpu cores to reserve for ray system processes. "
652+ "Cores can be fractional i.e. 1 .5 means one and a half a cpu core. "
653+ "By default, the value will be atleast 1 core, and at maximum 3 cores. The default value "
654+ "is calculated using the formula min(3.0, max(1.0, 0.05 * num_cores_on_the_system)) "
655+ "This option only works if --enable_resource_isolation is set." ,
656656)
657657@click .option (
658658 "--system-reserved-memory" ,
659659 required = False ,
660660 type = int ,
661661 help = "The amount of memory (in bytes) to reserve for ray system processes. "
662- "By default, the min of 10% and 25GB plus object_store_memory will be reserved. "
663- "Must be >= 100MB and system-reserved-memory + object-store-bytes < total available memory "
664- "This option only works if --enable-resource-isolation is set." ,
662+ "By default, the value will be atleast 500MB, and at most 10GB. The default value is "
663+ "calculated using the formula min(10GB, max(500MB, 0.10 * memory_available_on_the_system)) "
664+ "This option only works if --enable_resource_isolation is set." ,
665665)
666666@click .option (
667667 "--cgroup-path" ,
@@ -670,9 +670,9 @@ def debug(address: str, verbose: bool):
670670 type = str ,
671671 help = "The path for the cgroup the raylet should use to enforce resource isolation. "
672672 "By default, the cgroup used for resource isolation will be /sys/fs/cgroup. "
673- "The raylet must have read/write permissions to this path. "
673+ "The process starting ray must have read/write permissions to this path. "
674674 "Cgroup memory and cpu controllers be enabled for this cgroup. "
675- "This option only works if --enable-resource-isolation is set ." ,
675+ "This option only works if enable_resource_isolation is True ." ,
676676)
677677@add_click_logging_options
678678@PublicAPI
0 commit comments