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

[gcs] Enable grpc based broadcasting by default #19716

Merged
merged 20 commits into from
Nov 3, 2021
Merged
2 changes: 1 addition & 1 deletion src/ray/common/ray_config_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ RAY_CONFIG(int, gcs_resource_report_poll_period_ms, 100)
RAY_CONFIG(uint64_t, gcs_max_concurrent_resource_pulls, 100)
// Feature flag to use grpc instead of redis for resource broadcast.
// TODO(ekl) broken as of https://github.com/ray-project/ray/issues/16858
RAY_CONFIG(bool, grpc_based_resource_broadcast, false)
RAY_CONFIG(bool, grpc_based_resource_broadcast, true)
// Feature flag to enable grpc based pubsub in GCS.
RAY_CONFIG(bool, gcs_grpc_based_pubsub, false)

Expand Down