This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 32e451e6ad [minor](recycle) add log to observe bug (#11687) 32e451e6ad is described below commit 32e451e6adf2ac52cfafa2eea300614f955576fa Author: Mingyu Chen <morningman....@gmail.com> AuthorDate: Fri Aug 12 11:40:20 2022 +0800 [minor](recycle) add log to observe bug (#11687) --- .../src/main/java/org/apache/doris/catalog/CatalogRecycleBin.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/catalog/CatalogRecycleBin.java b/fe/fe-core/src/main/java/org/apache/doris/catalog/CatalogRecycleBin.java index 31fc17cb8d..0c7574ccbd 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/catalog/CatalogRecycleBin.java +++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/CatalogRecycleBin.java @@ -219,14 +219,13 @@ public class CatalogRecycleBin extends MasterDaemon implements Writable { } public synchronized void replayEraseTable(long tableId) { + LOG.info("before replay erase table[{}]", tableId); RecycleTableInfo tableInfo = idToTable.remove(tableId); idToRecycleTime.remove(tableId); - Table table = tableInfo.getTable(); if (table.getType() == TableType.OLAP && !Env.isCheckpointThread()) { Env.getCurrentEnv().onEraseOlapTable((OlapTable) table, true); } - LOG.info("replay erase table[{}]", tableId); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org