(selectdb-cloud) Use info level in recordCreatePartitionFailedMsg() due to intersection happens all the time (#30448)

This commit is contained in:
Gavin Chou
2024-02-06 08:34:10 +08:00
committed by yiguolei
parent bc2e8ac8f9
commit 4701dd49c3

View File

@ -588,7 +588,7 @@ public class DynamicPartitionScheduler extends MasterDaemon {
}
private void recordCreatePartitionFailedMsg(String dbName, String tableName, String msg, long tableId) {
LOG.warn("dynamic add partition failed: {}, db: {}, table: {}", msg, dbName, tableName);
LOG.info("dynamic add partition failed: {}, db: {}, table: {}", msg, dbName, tableName);
createOrUpdateRuntimeInfo(tableId, DYNAMIC_PARTITION_STATE, State.ERROR.toString());
createOrUpdateRuntimeInfo(tableId, CREATE_PARTITION_MSG, msg);
}