blob: 64d757f411cb983079b35ab5c1634b977d7e3202 [file] [log] [blame]
package edu.uci.ics.asterix.algebra.operators.physical;
import org.apache.commons.lang3.mutable.Mutable;
import edu.uci.ics.asterix.common.config.DatasetConfig.DatasetType;
import edu.uci.ics.asterix.common.functions.FunctionArgumentsConstants;
import edu.uci.ics.asterix.metadata.declared.AqlCompiledDatasetDecl;
import edu.uci.ics.asterix.metadata.declared.AqlCompiledMetadataDeclarations;
import edu.uci.ics.asterix.metadata.declared.AqlMetadataProvider;
import edu.uci.ics.asterix.metadata.declared.AqlSourceId;
import edu.uci.ics.asterix.om.functions.AsterixBuiltinFunctions;
import edu.uci.ics.hyracks.algebricks.common.constraints.AlgebricksPartitionConstraint;
import edu.uci.ics.hyracks.algebricks.common.exceptions.AlgebricksException;
import edu.uci.ics.hyracks.algebricks.common.exceptions.NotImplementedException;
import edu.uci.ics.hyracks.algebricks.common.utils.Pair;
import edu.uci.ics.hyracks.algebricks.core.algebra.base.IHyracksJobBuilder;
import edu.uci.ics.hyracks.algebricks.core.algebra.base.ILogicalExpression;
import edu.uci.ics.hyracks.algebricks.core.algebra.base.ILogicalOperator;
import edu.uci.ics.hyracks.algebricks.core.algebra.base.LogicalExpressionTag;
import edu.uci.ics.hyracks.algebricks.core.algebra.base.PhysicalOperatorTag;
import edu.uci.ics.hyracks.algebricks.core.algebra.expressions.AbstractFunctionCallExpression;
import edu.uci.ics.hyracks.algebricks.core.algebra.functions.FunctionIdentifier;
import edu.uci.ics.hyracks.algebricks.core.algebra.metadata.IDataSourceIndex;
import edu.uci.ics.hyracks.algebricks.core.algebra.operators.logical.AbstractScanOperator;
import edu.uci.ics.hyracks.algebricks.core.algebra.operators.logical.IOperatorSchema;
import edu.uci.ics.hyracks.algebricks.core.algebra.operators.logical.UnnestMapOperator;
import edu.uci.ics.hyracks.algebricks.core.jobgen.impl.JobGenContext;
import edu.uci.ics.hyracks.api.dataflow.IOperatorDescriptor;
public class RTreeSearchPOperator extends TreeSearchPOperator {
public RTreeSearchPOperator(IDataSourceIndex<String, AqlSourceId> idx) {
super(idx);
}
@Override
public PhysicalOperatorTag getOperatorTag() {
return PhysicalOperatorTag.RTREE_SEARCH;
}
@Override
public void contributeRuntimeOperator(IHyracksJobBuilder builder, JobGenContext context, ILogicalOperator op,
IOperatorSchema opSchema, IOperatorSchema[] inputSchemas, IOperatorSchema outerPlanSchema)
throws AlgebricksException {
UnnestMapOperator unnestMap = (UnnestMapOperator) op;
ILogicalExpression unnestExpr = unnestMap.getExpressionRef().getValue();
if (unnestExpr.getExpressionTag() == LogicalExpressionTag.FUNCTION_CALL) {
AbstractFunctionCallExpression f = (AbstractFunctionCallExpression) unnestExpr;
FunctionIdentifier fid = f.getFunctionIdentifier();
if (fid.equals(AsterixBuiltinFunctions.INDEX_SEARCH)) {
try {
contributeRtreeSearch(builder, context, unnestMap, opSchema, inputSchemas);
} catch (AlgebricksException e) {
throw new AlgebricksException(e);
}
return;
}
}
throw new IllegalStateException();
}
private void contributeRtreeSearch(IHyracksJobBuilder builder, JobGenContext context, UnnestMapOperator unnestMap,
IOperatorSchema opSchema, IOperatorSchema[] inputSchemas) throws AlgebricksException, AlgebricksException {
Mutable<ILogicalExpression> unnestExpr = unnestMap.getExpressionRef();
AbstractFunctionCallExpression f = (AbstractFunctionCallExpression) unnestExpr.getValue();
String idxType = getStringArgument(f, 1);
if (idxType != FunctionArgumentsConstants.RTREE_INDEX) {
throw new NotImplementedException(idxType + " indexes are not implemented.");
}
String idxName = getStringArgument(f, 0);
String datasetName = getStringArgument(f, 2);
Pair<int[], Integer> keys = getKeys(f, 3, inputSchemas);
buildRtreeSearch(builder, context, unnestMap, opSchema, datasetName, idxName, keys.first);
}
private static void buildRtreeSearch(IHyracksJobBuilder builder, JobGenContext context, AbstractScanOperator scan,
IOperatorSchema opSchema, String datasetName, String indexName, int[] keyFields)
throws AlgebricksException, AlgebricksException {
AqlMetadataProvider mp = (AqlMetadataProvider) context.getMetadataProvider();
AqlCompiledMetadataDeclarations metadata = mp.getMetadataDeclarations();
AqlCompiledDatasetDecl adecl = metadata.findDataset(datasetName);
if (adecl == null) {
throw new AlgebricksException("Unknown dataset " + datasetName);
}
if (adecl.getDatasetType() == DatasetType.EXTERNAL) {
throw new AlgebricksException("Trying to run rtree search over external dataset (" + datasetName + ").");
}
Pair<IOperatorDescriptor, AlgebricksPartitionConstraint> rtreeSearch = AqlMetadataProvider.buildRtreeRuntime(
metadata, context, builder.getJobSpec(), datasetName, adecl, indexName, keyFields);
builder.contributeHyracksOperator(scan, rtreeSearch.first);
builder.contributeAlgebricksPartitionConstraint(rtreeSearch.first, rtreeSearch.second);
ILogicalOperator srcExchange = scan.getInputs().get(0).getValue();
builder.contributeGraphEdge(srcExchange, 0, scan, 0);
}
}