Avoid get binding info and autoinc seq mds on replay

This commit is contained in:
Hongqin-Li
2024-06-28 09:59:10 +00:00
committed by ob-robot
parent 93a19cedf5
commit 08add2abda
22 changed files with 1003 additions and 117 deletions

View File

@ -2248,6 +2248,19 @@ int ObRpcClearTabletAutoincSeqCacheP::process()
return ret;
}
int ObRpcBatchGetTabletBindingP::process()
{
int ret = OB_SUCCESS;
if (OB_ISNULL(rpc_pkt_)) {
ret = OB_ERR_UNEXPECTED;
LOG_WARN("invalid rpc pkt", K(ret));
} else {
const int64_t abs_timeout_us = get_send_timestamp() + rpc_pkt_->get_timeout();
ret = ObTabletBindingMdsHelper::batch_get_tablet_binding(abs_timeout_us, arg_, result_);
}
return ret;
}
#ifdef OB_BUILD_TDE_SECURITY
int ObDumpTenantCacheMasterKeyP::process()
{