use of io.dingodb.exec.base.Task in project dingo by dingodb.
the class DingoJobVisitor method visit.
@Override
public Collection<Output> visit(@Nonnull DingoPartScan rel) {
String tableName = getSimpleName(rel.getTable());
TableDefinition td = Services.META.getTableDefinition(tableName);
Map<String, Location> parts = Services.META.getPartLocations(tableName);
List<Output> outputs = new ArrayList<>(parts.size());
TableId tableId = new TableId(Services.META.getTableKey(tableName));
String filterStr = null;
if (rel.getFilter() != null) {
filterStr = RexConverter.convert(rel.getFilter()).toString();
}
for (Map.Entry<String, Location> entry : parts.entrySet()) {
final Object partId = entry.getKey();
PartScanOperator operator = new PartScanOperator(tableId, entry.getKey(), td.getTupleSchema(), td.getKeyMapping(), filterStr, rel.getSelection());
operator.setId(idGenerator.get());
Task task = job.getOrCreate(entry.getValue());
task.putOperator(operator);
operator.getSoleOutput().setHint(OutputHint.of(tableName, partId));
outputs.addAll(operator.getOutputs());
}
return outputs;
}
use of io.dingodb.exec.base.Task in project dingo by dingodb.
the class JobRunner method createEnumerator.
@Nonnull
public Enumerator<Object[]> createEnumerator() {
if (job.isEmpty()) {
return Linq4j.emptyEnumerator();
}
Task task = distributeTasks();
assert task.getLocation().equals(Services.META.currentLocation()) : "The root task must be at current location.";
task.init();
task.run();
return new RootEnumerator(task.getRoot());
}
use of io.dingodb.exec.base.Task in project dingo by dingodb.
the class DingoJobVisitor method visit.
@Override
public Collection<Output> visit(@Nonnull DingoGetByKeys rel) {
String tableName = getSimpleName(rel.getTable());
final Map<String, Location> partLocations = Services.META.getPartLocations(tableName);
final TableDefinition td = Services.META.getTableDefinition(tableName);
final PartitionStrategy ps = new SimpleHashStrategy(partLocations.size());
final TableId tableId = new TableId(Services.META.getTableKey(tableName));
Map<String, List<Object[]>> partMap = ps.partKeyTuples(rel.getKeyTuples());
List<Output> outputs = new LinkedList<>();
for (Map.Entry<String, List<Object[]>> entry : partMap.entrySet()) {
final Object partId = entry.getKey();
GetByKeysOperator operator = new GetByKeysOperator(tableId, partId, td.getTupleSchema(), td.getKeyMapping(), entry.getValue(), rel.getSelection());
operator.setId(idGenerator.get());
Task task = job.getOrCreate(partLocations.get(entry.getKey()));
task.putOperator(operator);
operator.getSoleOutput().setHint(OutputHint.of(tableName, partId));
outputs.addAll(operator.getOutputs());
}
return outputs;
}
use of io.dingodb.exec.base.Task in project dingo by dingodb.
the class DingoJobVisitor method visit.
@Override
public Collection<Output> visit(@Nonnull DingoAggregate rel) {
Collection<Output> inputs = dingo(rel.getInput()).accept(this);
List<Output> outputs = new LinkedList<>();
for (Output input : inputs) {
Operator operator = new AggregateOperator(rel.getKeys(), rel.getAggList());
Task task = input.getTask();
operator.setId(idGenerator.get());
task.putOperator(operator);
input.setLink(operator.getInput(0));
outputs.addAll(operator.getOutputs());
}
return outputs;
}
use of io.dingodb.exec.base.Task in project dingo by dingodb.
the class DingoJobVisitor method visit.
@Override
public Collection<Output> visit(@Nonnull DingoValues rel) {
Task task = job.getOrCreate(Services.META.currentLocation());
ValuesOperator operator = new ValuesOperator(rel.getValues());
operator.setId(idGenerator.get());
task.putOperator(operator);
return operator.getOutputs();
}
Aggregations