[FEAT MERGE] Merge syslog user experience improvement to master

Co-authored-by: Charles0429 <xiezhenjiang@gmail.com>
Co-authored-by: tino247 <tino247@126.com>
Co-authored-by: chaser-ch <chaser.ch@antgroup.com>
This commit is contained in:
stdliu
2023-02-06 15:52:23 +08:00
committed by ob-robot
parent 1de9266dd0
commit f8c5c2647f
796 changed files with 4465 additions and 3036 deletions

View File

@ -659,7 +659,7 @@ void ObMultipleMerge::report_tablet_stat()
tablet_stat.scan_micro_block_cnt_ = access_ctx_->table_store_stat_.micro_access_cnt_;
tablet_stat.pushdown_micro_block_cnt_ = access_ctx_->table_store_stat_.pushdown_micro_access_cnt_;
if (OB_TMP_FAIL(MTL(storage::ObTenantTabletStatMgr *)->report_stat(tablet_stat))) {
STORAGE_LOG(WARN, "failed to report tablet stat", K(tmp_ret), K(tablet_stat));
STORAGE_LOG_RET(WARN, tmp_ret, "failed to report tablet stat", K(tmp_ret), K(tablet_stat));
}
}
}
@ -1085,7 +1085,7 @@ const ObTableIterParam * ObMultipleMerge::get_actual_iter_param(const ObITable *
{
const ObTableIterParam *ptr = NULL;
if (OB_ISNULL(table)) {
STORAGE_LOG(WARN, "input table is NULL", KP(table));
STORAGE_LOG_RET(WARN, OB_INVALID_ARGUMENT, "input table is NULL", KP(table));
} else{
ptr = &access_param_->iter_param_;
}