diff --git a/src/storage/blocksstable/ob_tmp_file.cpp b/src/storage/blocksstable/ob_tmp_file.cpp index 32c848aab1..214e7da900 100644 --- a/src/storage/blocksstable/ob_tmp_file.cpp +++ b/src/storage/blocksstable/ob_tmp_file.cpp @@ -1171,7 +1171,8 @@ int ObTmpFile::sync(const int64_t timeout_ms) // all extents has been closed. const ObIArray &extents = file_meta_.get_extents(); common::hash::ObHashSet blk_id_set; - if (OB_FAIL(blk_id_set.create(extents.count()))){ + lib::ObMemAttr attr(tenant_id_, "TmpBlkIDSet"); + if (OB_FAIL(blk_id_set.create(extents.count(), attr))){ STORAGE_LOG(WARN, "create block id set failed", K(ret), K(timeout_ms)); } else { // get extents block id set. diff --git a/src/storage/tablet/ob_tablet.cpp b/src/storage/tablet/ob_tablet.cpp index e6bf807cde..3f5fa84ef3 100755 --- a/src/storage/tablet/ob_tablet.cpp +++ b/src/storage/tablet/ob_tablet.cpp @@ -1766,7 +1766,7 @@ int ObTablet::inner_inc_macro_ref_cnt() } else { hold_ref_cnt_ = true; } - FLOG_INFO("the tablet that inner increases ref cnt is", + FLOG_INFO("the tablet that inner increases ref cnt is", K(ret), K(is_inited_), K(tablet_meta_.ls_id_), K(tablet_meta_.tablet_id_), K(table_store_addr_.addr_), K(auto_inc_seq_addr.addr_), K(storage_schema_addr_.addr_), K(medium_info_list_addr.addr_), K(tablet_status_uncommitted_kv_addr.addr_), K(tablet_status_committed_kv_addr.addr_),