[FEAT MERGE] OLTP performance optimization feature

This commit is contained in:
obdev
2022-12-19 02:38:04 +00:00
committed by ob-robot
parent 9daa7428e9
commit 050e984b04
82 changed files with 1738 additions and 1230 deletions

View File

@ -649,11 +649,14 @@ int ObMemtableCtx::fill_redo_log(char *buf,
}
}
}
if (OB_SUCCESS != ret && OB_EAGAIN != ret && OB_ENTRY_NOT_EXIST != ret
&& OB_ERR_TOO_BIG_ROWSIZE != ret) {
if (OB_SUCCESS != ret && OB_EAGAIN != ret && OB_ENTRY_NOT_EXIST != ret) {
TRANS_LOG(WARN, "fill_redo_log fail", "ret", ret, "trans_id",
NULL == ctx_ ? "" : S(ctx_->get_trans_id()), "buf", buf, "buf_len", buf_len, "buf_pos",
buf_pos);
NULL == ctx_ ? "" : S(ctx_->get_trans_id()),
"buf", buf,
"buf_len", buf_len,
"buf_pos", buf_pos,
"pending_log_size", trans_mgr_.get_pending_log_size(),
K(*this));
}
return ret;