Search in sources :

Example 1 with UnionExchange

use of org.apache.drill.exec.physical.config.UnionExchange in project drill by apache.

the class UnionExchangePrel method getPhysicalOperator.

public PhysicalOperator getPhysicalOperator(PhysicalPlanCreator creator) throws IOException {
    Prel child = (Prel) this.getInput();
    PhysicalOperator childPOP = child.getPhysicalOperator(creator);
    if (PrelUtil.getSettings(getCluster()).isSingleMode()) {
        return childPOP;
    }
    UnionExchange g = new UnionExchange(childPOP);
    return creator.addMetadata(this, g);
}
Also used : UnionExchange(org.apache.drill.exec.physical.config.UnionExchange) PhysicalOperator(org.apache.drill.exec.physical.base.PhysicalOperator)

Example 2 with UnionExchange

use of org.apache.drill.exec.physical.config.UnionExchange in project drill by apache.

the class TestOpSerialization method testSerializedDeserialize.

@Test
public void testSerializedDeserialize() throws Throwable {
    DrillConfig c = DrillConfig.create();
    PhysicalPlanReader reader = PhysicalPlanReaderTestFactory.defaultPhysicalPlanReader(c);
    MockSubScanPOP s = new MockSubScanPOP("abc", false, null);
    s.setOperatorId(3);
    Filter f = new Filter(s, new ValueExpressions.BooleanExpression("true", ExpressionPosition.UNKNOWN), 0.1f);
    f.setOperatorId(2);
    UnionExchange e = new UnionExchange(f);
    e.setOperatorId(1);
    Screen screen = new Screen(e, CoordinationProtos.DrillbitEndpoint.getDefaultInstance());
    screen.setOperatorId(0);
    boolean reversed = false;
    while (true) {
        List<PhysicalOperator> pops = Lists.newArrayList();
        pops.add(s);
        pops.add(e);
        pops.add(f);
        pops.add(screen);
        if (reversed) {
            pops = Lists.reverse(pops);
        }
        PhysicalPlan plan1 = new PhysicalPlan(PlanProperties.builder().build(), pops);
        LogicalPlanPersistence logicalPlanPersistence = PhysicalPlanReaderTestFactory.defaultLogicalPlanPersistence(c);
        String json = plan1.unparse(logicalPlanPersistence.getMapper().writer());
        PhysicalPlan plan2 = reader.readPhysicalPlan(json);
        PhysicalOperator root = plan2.getSortedOperators(false).iterator().next();
        assertEquals(0, root.getOperatorId());
        PhysicalOperator o1 = root.iterator().next();
        assertEquals(1, o1.getOperatorId());
        PhysicalOperator o2 = o1.iterator().next();
        assertEquals(2, o2.getOperatorId());
        if (reversed) {
            break;
        }
        reversed = !reversed;
    }
}
Also used : PhysicalPlan(org.apache.drill.exec.physical.PhysicalPlan) UnionExchange(org.apache.drill.exec.physical.config.UnionExchange) PhysicalPlanReader(org.apache.drill.exec.planner.PhysicalPlanReader) Screen(org.apache.drill.exec.physical.config.Screen) ValueExpressions(org.apache.drill.common.expression.ValueExpressions) MockSubScanPOP(org.apache.drill.exec.store.mock.MockSubScanPOP) LogicalPlanPersistence(org.apache.drill.common.config.LogicalPlanPersistence) DrillConfig(org.apache.drill.common.config.DrillConfig) Filter(org.apache.drill.exec.physical.config.Filter) PhysicalOperator(org.apache.drill.exec.physical.base.PhysicalOperator) Test(org.junit.Test)

Aggregations

PhysicalOperator (org.apache.drill.exec.physical.base.PhysicalOperator)2 UnionExchange (org.apache.drill.exec.physical.config.UnionExchange)2 DrillConfig (org.apache.drill.common.config.DrillConfig)1 LogicalPlanPersistence (org.apache.drill.common.config.LogicalPlanPersistence)1 ValueExpressions (org.apache.drill.common.expression.ValueExpressions)1 PhysicalPlan (org.apache.drill.exec.physical.PhysicalPlan)1 Filter (org.apache.drill.exec.physical.config.Filter)1 Screen (org.apache.drill.exec.physical.config.Screen)1 PhysicalPlanReader (org.apache.drill.exec.planner.PhysicalPlanReader)1 MockSubScanPOP (org.apache.drill.exec.store.mock.MockSubScanPOP)1 Test (org.junit.Test)1