This is an automated email from the ASF dual-hosted git repository.
gavinchou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 74b8df646d2 [feat](proto) Add busy error code for MS (#61514)
74b8df646d2 is described below
commit 74b8df646d2294ca29fbe54d0d5e1c58b430a0d1
Author: Yixuan Wang <[email protected]>
AuthorDate: Fri Mar 20 18:26:32 2026 +0800
[feat](proto) Add busy error code for MS (#61514)
---
gensrc/proto/cloud.proto | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gensrc/proto/cloud.proto b/gensrc/proto/cloud.proto
index 34422d6c1e3..6e2c46672cd 100644
--- a/gensrc/proto/cloud.proto
+++ b/gensrc/proto/cloud.proto
@@ -1839,7 +1839,10 @@ enum MetaServiceCode {
STREAMING_JOB_PROGRESS_NOT_FOUND = 5006;
// Rate limit
+ // Request is rejected by the RPC-specific QPS limiter.
MAX_QPS_LIMIT = 6001;
+ // Request is rejected by the MetaService-wide rate limiter instead of a
single RPC limiter.
+ MS_TOO_BUSY = 6002;
ERR_ENCRYPT = 7001;
ERR_DECPYPT = 7002;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]