Cache.java
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package org.apache.doris.qe.cache;
import org.apache.doris.analysis.SelectStmt;
import org.apache.doris.common.Config;
import org.apache.doris.common.Status;
import org.apache.doris.proto.InternalService;
import org.apache.doris.qe.RowBatch;
import org.apache.doris.thrift.TUniqueId;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
public abstract class Cache {
private static final Logger LOG = LogManager.getLogger(Cache.class);
public enum HitRange {
None,
Full,
Left,
Right,
Middle
}
protected TUniqueId queryId;
protected final SelectStmt selectStmt;
protected RowBatchBuilder rowBatchBuilder;
protected boolean disableCache = false;
protected CacheAnalyzer.CacheTable latestTable;
protected CacheProxy proxy;
protected HitRange hitRange;
protected String allViewExpandStmtListStr;
protected Cache(TUniqueId queryId, SelectStmt selectStmt) {
this.queryId = queryId;
this.selectStmt = selectStmt;
this.proxy = CacheProxy.getCacheProxy(CacheProxy.CacheProxyType.BE);
this.hitRange = HitRange.None;
}
protected Cache(TUniqueId queryId) {
this.queryId = queryId;
this.selectStmt = null;
this.proxy = CacheProxy.getCacheProxy(CacheProxy.CacheProxyType.BE);
this.hitRange = HitRange.None;
}
public abstract InternalService.PFetchCacheResult getCacheData(Status status);
public HitRange getHitRange() {
return hitRange;
}
/**
* Get the rewritten SQL that needs to get data from BE
*/
public abstract SelectStmt getRewriteStmt();
/**
* Copy the data that needs to be updated to the Cache from the queried Rowset
*/
public abstract void copyRowBatch(RowBatch rowBatch);
/**
* Update rowset to cache of be
*/
public abstract void updateCache();
public boolean isDisableCache() {
return disableCache;
}
protected boolean checkRowLimit() {
if (disableCache || rowBatchBuilder == null) {
return false;
}
if (rowBatchBuilder.getRowSize() > Config.cache_result_max_row_count) {
if (LOG.isDebugEnabled()) {
LOG.debug("can not be cached. rowbatch size {} is more than {}", rowBatchBuilder.getRowSize(),
Config.cache_result_max_row_count);
}
rowBatchBuilder.clear();
disableCache = true;
return false;
} else if (rowBatchBuilder.getDataSize() > Config.cache_result_max_data_size) {
if (LOG.isDebugEnabled()) {
LOG.debug("can not be cached. rowbatch data size {} is more than {}", rowBatchBuilder.getDataSize(),
Config.cache_result_max_data_size);
}
rowBatchBuilder.clear();
disableCache = true;
return false;
} else {
return true;
}
}
public CacheProxy getProxy() {
return proxy;
}
}