[core] Store Internal Config in GCS (#8921)

This commit is contained in:
Ian Rodney
2020-07-08 11:22:08 -05:00
committed by GitHub
parent 4da0e542d5
commit 9172f8c3a6
36 changed files with 484 additions and 212 deletions
+4 -1
View File
@@ -1260,7 +1260,8 @@ def start_raylet(redis_address,
plasma_directory=None,
huge_pages=False,
fate_share=None,
socket_to_use=None):
socket_to_use=None,
head_node=False):
"""Start a raylet, which is a combined local scheduler and object manager.
Args:
@@ -1402,6 +1403,8 @@ def start_raylet(redis_address,
command.append("--huge_pages")
if socket_to_use:
socket_to_use.close()
if head_node:
command.append("--head_node")
process_info = start_ray_process(
command,
ray_constants.PROCESS_TYPE_RAYLET,