This is an automated email from the ASF dual-hosted git repository.
tanxinyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new a85b0891a46 [region migration] Retry WRITE_PROCESS_REJECT status code
#13921
a85b0891a46 is described below
commit a85b0891a4687b33516a8c99bb7d17c0e5cf7688
Author: Xiangpeng Hu <[email protected]>
AuthorDate: Mon Oct 28 15:01:53 2024 +0800
[region migration] Retry WRITE_PROCESS_REJECT status code #13921
---
.../src/main/java/org/apache/iotdb/commons/utils/StatusUtils.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/StatusUtils.java
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/StatusUtils.java
index 82232c6a0c9..9a3a0b767b2 100644
---
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/StatusUtils.java
+++
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/StatusUtils.java
@@ -54,6 +54,7 @@ public class StatusUtils {
NEED_RETRY.add(TSStatusCode.SYSTEM_READ_ONLY.getStatusCode());
NEED_RETRY.add(TSStatusCode.STORAGE_ENGINE_NOT_READY.getStatusCode());
NEED_RETRY.add(TSStatusCode.WRITE_PROCESS_ERROR.getStatusCode());
+ NEED_RETRY.add(TSStatusCode.WRITE_PROCESS_REJECT.getStatusCode());
NEED_RETRY.add(TSStatusCode.WAL_ERROR.getStatusCode());
NEED_RETRY.add(TSStatusCode.DISK_SPACE_INSUFFICIENT.getStatusCode());
NEED_RETRY.add(TSStatusCode.QUERY_PROCESS_ERROR.getStatusCode());