-
Notifications
You must be signed in to change notification settings - Fork 6.2k
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
[Feat][Core/Dashboard] Remove dashboard gRPC server #51956
[Feat][Core/Dashboard] Remove dashboard gRPC server #51956
Conversation
4b6a372
to
8efce81
Compare
Signed-off-by: Chi-Sheng Liu <chishengliu@chishengliu.com>
8efce81
to
f102661
Compare
Signed-off-by: Chi-Sheng Liu <chishengliu@chishengliu.com>
@@ -526,7 +526,6 @@ def print_after(_obj): | |||
|
|||
def test_log_redirect_to_stderr(shutdown_only): | |||
log_components = { | |||
ray_constants.PROCESS_TYPE_DASHBOARD: "Dashboard head grpc address", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should keep this but check a different log message
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use "Starting dashboard metrics server on port" instead.
Signed-off-by: Chi-Sheng Liu <chishengliu@chishengliu.com>
cc @dayshah for the doc review. |
@@ -134,7 +134,7 @@ In addition to ports specified above, the head node needs to open several more p | |||
- ``--port``: Port of Ray (GCS server). The head node will start a GCS server listening on this port. Default: 6379. | |||
- ``--ray-client-server-port``: Listening port for Ray Client Server. Default: 10001. | |||
- ``--redis-shard-ports``: Comma-separated list of ports for non-primary Redis shards. Default: Random values. | |||
- ``--dashboard-grpc-port``: The gRPC port used by the dashboard. Default: Random value. | |||
- ``--dashboard-grpc-port``: (Deprecated) No longer used. Only kept for backward compatibility. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
when would we fully remove?
Why are these changes needed?
After #51555, the dashboard gRPC server is not used by any modules. This PR removes it.
The CLI flag
--dashboard-grpc-port
is kept but deprecated.Related issue number
N/A
Checks
git commit -s
) in this PR.scripts/format.sh
to lint the changes in this PR.method in Tune, I've added it in
doc/source/tune/api/
under thecorresponding
.rst
file.