This is an automated email from the ASF dual-hosted git repository. caogaofei pushed a commit to branch for_tsbs in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit b63f0d5303cf28fd1ca868bd44e7818e304c4150 Author: Beyyes <[email protected]> AuthorDate: Tue Apr 18 17:40:58 2023 +0800 add isDebug judgement for PartitionCache --- .../apache/iotdb/db/mpp/plan/analyze/cache/PartitionCache.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/server/src/main/java/org/apache/iotdb/db/mpp/plan/analyze/cache/PartitionCache.java b/server/src/main/java/org/apache/iotdb/db/mpp/plan/analyze/cache/PartitionCache.java index 8449e4fc05..ed787adb33 100644 --- a/server/src/main/java/org/apache/iotdb/db/mpp/plan/analyze/cache/PartitionCache.java +++ b/server/src/main/java/org/apache/iotdb/db/mpp/plan/analyze/cache/PartitionCache.java @@ -673,10 +673,12 @@ public class PartitionCache { SeriesPartitionTable cachedSeriesPartitionTable = cachedStorageGroupPartitionMap.get(seriesPartitionSlot); if (null == cachedSeriesPartitionTable) { - logger.debug( - "[{} Cache] miss when search device {}", - DATA_PARTITION_CACHE_NAME, - dataPartitionQueryParam.getDevicePath()); + if (logger.isDebugEnabled()) { + logger.debug( + "[{} Cache] miss when search device {}", + DATA_PARTITION_CACHE_NAME, + dataPartitionQueryParam.getDevicePath()); + } return false; } Map<TTimePartitionSlot, List<TConsensusGroupId>> cachedTimePartitionSlot =
