This is an automated email from the ASF dual-hosted git repository. yongzao pushed a commit to branch fix-region-reconstruct in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 556a40bd1add3c410440c04ce1ddb91b5aa1dc2e Author: Yongzao <532741...@qq.com> AuthorDate: Mon Sep 8 16:50:30 2025 +0800 Update RetryUtils.java --- .../src/main/java/org/apache/iotdb/commons/utils/RetryUtils.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/RetryUtils.java b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/RetryUtils.java index 62b656364a5..cff60601edb 100644 --- a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/RetryUtils.java +++ b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/utils/RetryUtils.java @@ -33,7 +33,8 @@ public class RetryUtils { public static boolean needRetryForWrite(int statusCode) { return statusCode == TSStatusCode.INTERNAL_SERVER_ERROR.getStatusCode() || statusCode == TSStatusCode.SYSTEM_READ_ONLY.getStatusCode() - || statusCode == TSStatusCode.WRITE_PROCESS_REJECT.getStatusCode(); + || statusCode == TSStatusCode.WRITE_PROCESS_REJECT.getStatusCode() + || statusCode == TSStatusCode.EXECUTE_STATEMENT_ERROR.getStatusCode(); } public static boolean needRetryWithIncreasingInterval(Exception e) {