-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
[core] GCS version auth [5/n] #36073
Conversation
1bfd527
to
930a5c0
Compare
26bacf1
to
cf7033c
Compare
cc: @bveeramani release-blocking PR |
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.
also the merge conflict need to be fixed.
RAY_CHECK_OK(status); | ||
RAY_CHECK(stored_raylet_config.has_value()); | ||
RayConfig::instance().initialize(stored_raylet_config.get()); | ||
auto f = std::async(std::launch::async, [&]() { |
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.
any reason making this change?
@@ -227,7 +244,7 @@ class ClientCallManager { | |||
/// -1 means it will use the default timeout configured for the handler. | |||
/// | |||
/// \return A `ClientCall` representing the request that was just sent. | |||
template <class GrpcService, class Request, class Reply> | |||
template <class GrpcService, class Request, class Reply, bool Insecure> |
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.
super nit: Insecure -> VerifyClusterId
Signed-off-by: vitsai <victoria@anyscale.com>
Retrieve the token from the GCS server in the GCS client while connecting, to attach to metadata in requests. Previous PR (GCS server): ray-project#36535 Next PR (auth): ray-project#36073 Signed-off-by: Bhavpreet Singh <singh.bhavpreet00@gmail.com>
Retrieve the token from the GCS server in the GCS client while connecting, to attach to metadata in requests. Previous PR (GCS server): ray-project#36535 Next PR (auth): ray-project#36073 Signed-off-by: Bhavpreet Singh <singh.bhavpreet00@gmail.com>
Retrieve the token from the GCS server in the GCS client while connecting, to attach to metadata in requests. Previous PR (GCS server): ray-project#36535 Next PR (auth): ray-project#36073 Signed-off-by: Bhavpreet Singh <singh.bhavpreet00@gmail.com>
Retrieve the token from the GCS server in the GCS client while connecting, to attach to metadata in requests. Previous PR (GCS server): ray-project#36535 Next PR (auth): ray-project#36073 Signed-off-by: NripeshN <nn2012@hw.ac.uk>
Retrieve the token from the GCS server in the GCS client while connecting, to attach to metadata in requests. Previous PR (GCS server): ray-project#36535 Next PR (auth): ray-project#36073 Signed-off-by: e428265 <arvind.chandramouli@lmco.com>
Add AuthType template parameter to authenticate against cluster token.
(Moved authentication logic over from #35014 to make the PR smaller.)
Why are these changes needed?
Related issue number
#34763
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.