kaijchen commented on code in PR #47507: URL: https://github.com/apache/doris/pull/47507#discussion_r1947493683
########## cloud/src/meta-service/txn_kv_error.h: ########## @@ -52,7 +52,7 @@ inline const char* format_as(TxnErrorCode code) { case TxnErrorCode::TXN_INVALID_ARGUMENT: return "InvalidArgument"; case TxnErrorCode::TXN_KEY_TOO_LARGE: return "Key length exceeds limit"; case TxnErrorCode::TXN_VALUE_TOO_LARGE: return "Value length exceeds limit"; - case TxnErrorCode::TXN_BYTES_TOO_LARGE: return "Transaction exceeds byte limit"; + case TxnErrorCode::TXN_BYTES_TOO_LARGE: return "Transaction exceeds byte limit. Split the load into smaller batches and try again."; Review Comment: ```suggestion case TxnErrorCode::TXN_BYTES_TOO_LARGE: return "Transaction exceeds byte limit. Reduce affected partitions and try again."; ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org