Skip to content
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

Add ray start --runtime-env-agent-port. #39919

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions python/ray/_private/parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ class RayParams:
Defaults to random available port.
runtime_env_agent_port: The port at which the runtime env agent
listens to for HTTP.
Defaults to random available port.
plasma_store_socket_name: If provided, it specifies the socket
name used by the plasma store.
raylet_socket_name: If provided, it specifies the socket path
Expand Down
8 changes: 8 additions & 0 deletions python/ray/scripts/scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,12 @@ def debug(address):
default=None,
help="The port for the dashboard head to listen for grpc on.",
)
@click.option(
"--runtime-env-agent-port",
type=int,
default=None,
help="The port for the runtime enviroment agents to listen for http on.",
)
@click.option(
"--block",
is_flag=True,
Expand Down Expand Up @@ -566,6 +572,7 @@ def start(
dashboard_agent_listen_port,
dashboard_agent_grpc_port,
dashboard_grpc_port,
runtime_env_agent_port,
block,
plasma_directory,
autoscaling_config,
Expand Down Expand Up @@ -664,6 +671,7 @@ def start(
dashboard_agent_listen_port=dashboard_agent_listen_port,
metrics_agent_port=dashboard_agent_grpc_port,
dashboard_grpc_port=dashboard_grpc_port,
runtime_env_agent_port=runtime_env_agent_port,
_system_config=system_config,
enable_object_reconstruction=enable_object_reconstruction,
metrics_export_port=metrics_export_port,
Expand Down
Loading