aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbabenko <babenko@yandex-team.com>2025-06-03 10:39:29 +0300
committerbabenko <babenko@yandex-team.com>2025-06-03 10:54:03 +0300
commit361b2f34c73abef8abe779a308c45a24e1c7431f (patch)
tree345f05ded43ba9908ff6938cd7b71147c4b78c8b
parentafd25684d9409df78ca2eb4399c292bf5d16f34e (diff)
downloadydb-361b2f34c73abef8abe779a308c45a24e1c7431f.tar.gz
YT-25098: Drop master-side cache option from public APIs
* Changelog entry Type: feature Component: cpp-sdk, go-sdk, java-sdk Public APIs no longer allow specifying "master-side cache" to read from. Please you the vanilla "cache" variant. commit_hash:50f68da02f4896ba494286fb914b5d441c8cdfed
-rw-r--r--yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto4
1 files changed, 0 insertions, 4 deletions
diff --git a/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto b/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto
index b7115ac5438..71fd456bec3 100644
--- a/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto
+++ b/yt/yt_proto/yt/client/api/rpc_proxy/proto/api_service.proto
@@ -69,13 +69,9 @@ enum EReplicaConsistency
enum EMasterReadKind
{
- // These options cover the majority of cases.
MRK_LEADER = 0;
MRK_FOLLOWER = 1;
MRK_CACHE = 2;
-
- // These are advanced options. Typically you don't need these.
- MRK_MASTER_SIDE_CACHE = 3;
}
enum ERowsetKind