This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new 1f53be0636a branch-4.1: [feat](proto) Add busy error code for MS
#61514 (#61579)
1f53be0636a is described below
commit 1f53be0636abb210ac26efa56e0e2092dba9e462
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Mar 21 10:26:21 2026 +0800
branch-4.1: [feat](proto) Add busy error code for MS #61514 (#61579)
Cherry-picked from #61514
Co-authored-by: Yixuan Wang <[email protected]>
---
gensrc/proto/cloud.proto | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gensrc/proto/cloud.proto b/gensrc/proto/cloud.proto
index 314fb84d66c..8350f0b70ad 100644
--- a/gensrc/proto/cloud.proto
+++ b/gensrc/proto/cloud.proto
@@ -1806,7 +1806,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]