blob: f355812120784b3c20a406c43e90e1a2be8c740b [file] [log] [blame]
/*
* 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.drill.exec.store.mapr;
import static org.ojai.DocumentConstants.ID_KEY;
import org.apache.drill.common.expression.SchemaPath;
import com.mapr.db.DBConstants;
import org.apache.drill.exec.planner.cost.DrillCostBase;
import org.apache.drill.exec.planner.cost.PluginCost.CheckValid;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public interface PluginConstants {
Logger logger = LoggerFactory.getLogger(PluginConstants.class);
public final static CheckValid<Integer> alwaysValid = new CheckValid<Integer>() {
@Override
public boolean isValid(Integer parameter) {
return true;
}
};
public final static CheckValid<Integer> isNonNegative = new CheckValid<Integer>() {
@Override
public boolean isValid(Integer paramValue) {
if (paramValue > 0 && paramValue <= Integer.MAX_VALUE) {
return true;
} else {
logger.warn("Setting default value as the supplied parameter value is less than/equals to 0");
return false;
}
}
};
String SSD = "SSD";
String HDD = "HDD";
SchemaPath ID_SCHEMA_PATH = SchemaPath.getSimplePath(ID_KEY);
SchemaPath DOCUMENT_SCHEMA_PATH = SchemaPath.getSimplePath(DBConstants.DOCUMENT_FIELD);
int JSON_TABLE_NUM_TABLETS_PER_INDEX_DEFAULT = 32;
int JSON_TABLE_SCAN_SIZE_MB_MIN = 32;
int JSON_TABLE_SCAN_SIZE_MB_MAX = 8192;
String JSON_TABLE_SCAN_SIZE_MB = "format-maprdb.json.scanSizeMB";
int JSON_TABLE_SCAN_SIZE_MB_DEFAULT = 128;
String JSON_TABLE_RESTRICTED_SCAN_SIZE_MB = "format-maprdb.json.restrictedScanSizeMB";
int JSON_TABLE_RESTRICTED_SCAN_SIZE_MB_DEFAULT = 4096;
String JSON_TABLE_USE_NUM_REGIONS_FOR_DISTRIBUTION_PLANNING = "format-maprdb.json.useNumRegionsForDistribution";
boolean JSON_TABLE_USE_NUM_REGIONS_FOR_DISTRIBUTION_PLANNING_DEFAULT = false;
String JSON_TABLE_BLOCK_SIZE = "format-maprdb.json.pluginCost.blockSize";
int JSON_TABLE_BLOCK_SIZE_DEFAULT = 8192;
String JSON_TABLE_MEDIA_TYPE = "format-maprdb.json.mediaType";
String JSON_TABLE_MEDIA_TYPE_DEFAULT = SSD;
String JSON_TABLE_SSD_BLOCK_SEQ_READ_COST = "format-maprdb.json.pluginCost.ssdBlockSequentialReadCost";
int JSON_TABLE_SSD_BLOCK_SEQ_READ_COST_DEFAULT = 32 * DrillCostBase.BASE_CPU_COST * JSON_TABLE_BLOCK_SIZE_DEFAULT;
// for SSD random and sequential costs are the same
String JSON_TABLE_SSD_BLOCK_RANDOM_READ_COST = "format-maprdb.json.pluginCost.ssdBlockRandomReadCost";
int JSON_TABLE_SSD_BLOCK_RANDOM_READ_COST_DEFAULT = JSON_TABLE_SSD_BLOCK_SEQ_READ_COST_DEFAULT;
String JSON_TABLE_AVERGE_COLUMN_SIZE = "format-maprdb.json.pluginCost.averageColumnSize";
int JSON_TABLE_AVERGE_COLUMN_SIZE_DEFAULT = 10;
int TABLE_BLOCK_SIZE_DEFAULT = 8192;
int TABLE_SSD_BLOCK_SEQ_READ_COST_DEFAULT = 32 * DrillCostBase.BASE_CPU_COST * TABLE_BLOCK_SIZE_DEFAULT;
int TABLE_SSD_BLOCK_RANDOM_READ_COST_DEFAULT = TABLE_SSD_BLOCK_SEQ_READ_COST_DEFAULT;
int TABLE_AVERGE_COLUMN_SIZE_DEFAULT = 10;
String JSON_TABLE_HDD_BLOCK_SEQ_READ_COST = "format-maprdb.json.pluginCost.hddBlockSequentialReadCost";
int JSON_TABLE_HDD_BLOCK_SEQ_READ_COST_DEFAULT = 6 * JSON_TABLE_SSD_BLOCK_SEQ_READ_COST_DEFAULT;
String JSON_TABLE_HDD_BLOCK_RANDOM_READ_COST = "format-maprdb.json.pluginCost.hddBlockRandomReadCost";
int JSON_TABLE_HDD_BLOCK_RANDOM_READ_COST_DEFAULT = 1000 * JSON_TABLE_HDD_BLOCK_SEQ_READ_COST_DEFAULT;
}