Search in sources :

Example 16 with FragmentManager

use of org.apache.drill.exec.work.fragment.FragmentManager in project drill by apache.

the class ControlMessageHandler method resumeFragment.

public Ack resumeFragment(final FragmentHandle handle) {
    // resume a pending fragment
    final FragmentManager manager = bee.getContext().getWorkBus().getFragmentManager(handle);
    if (manager != null) {
        manager.unpause();
        return Acks.OK;
    }
    // resume a paused fragment
    final FragmentExecutor runner = bee.getFragmentRunner(handle);
    if (runner != null) {
        runner.unpause();
        return Acks.OK;
    }
    // fragment completed or does not exist
    logger.warn("Dropping request to resume fragment. {} does not exist.", QueryIdHelper.getQueryIdentifier(handle));
    return Acks.OK;
}
Also used : FragmentManager(org.apache.drill.exec.work.fragment.FragmentManager) NonRootFragmentManager(org.apache.drill.exec.work.fragment.NonRootFragmentManager) FragmentExecutor(org.apache.drill.exec.work.fragment.FragmentExecutor)

Example 17 with FragmentManager

use of org.apache.drill.exec.work.fragment.FragmentManager in project drill by apache.

the class TestBitBitKerberos method successEncryptionChunkMode.

@Test
public void successEncryptionChunkMode() throws Exception {
    final WorkerBee bee = mock(WorkerBee.class);
    final WorkEventBus workBus = mock(WorkEventBus.class);
    newConfig = new DrillConfig(DrillConfig.create(cloneDefaultTestConfigProperties()).withValue(ExecConstants.AUTHENTICATION_MECHANISMS, ConfigValueFactory.fromIterable(Lists.newArrayList("kerberos"))).withValue(ExecConstants.BIT_AUTHENTICATION_ENABLED, ConfigValueFactory.fromAnyRef(true)).withValue(ExecConstants.BIT_AUTHENTICATION_MECHANISM, ConfigValueFactory.fromAnyRef("kerberos")).withValue(ExecConstants.BIT_ENCRYPTION_SASL_ENABLED, ConfigValueFactory.fromAnyRef(true)).withValue(ExecConstants.BIT_ENCRYPTION_SASL_MAX_WRAPPED_SIZE, ConfigValueFactory.fromAnyRef(100000)).withValue(ExecConstants.USE_LOGIN_PRINCIPAL, ConfigValueFactory.fromAnyRef(true)).withValue(ExecConstants.SERVICE_PRINCIPAL, ConfigValueFactory.fromAnyRef(krbHelper.SERVER_PRINCIPAL)).withValue(ExecConstants.SERVICE_KEYTAB_LOCATION, ConfigValueFactory.fromAnyRef(krbHelper.serverKeytab.toString())));
    final ScanResult result = ClassPathScanner.fromPrescan(newConfig);
    final BootStrapContext c2 = new BootStrapContext(newConfig, SystemOptionManager.createDefaultOptionDefinitions(), result);
    final FragmentManager manager = setupFragmentContextAndManager(c2.getAllocator());
    when(workBus.getFragmentManager(Mockito.<FragmentHandle>any())).thenReturn(manager);
    final DataConnectionConfig config = new DataConnectionConfig(c2.getAllocator(), c2, new DataServerRequestHandler(workBus, bee));
    final DataServer server = new DataServer(config);
    port = server.bind(port, true);
    final DrillbitEndpoint ep = DrillbitEndpoint.newBuilder().setAddress("localhost").setDataPort(port).build();
    final DataConnectionManager connectionManager = new DataConnectionManager(ep, config);
    final DataTunnel tunnel = new DataTunnel(connectionManager);
    AtomicLong max = new AtomicLong(0);
    try {
        for (int i = 0; i < 40; i++) {
            long t1 = System.currentTimeMillis();
            tunnel.sendRecordBatch(new TimingOutcome(max), new FragmentWritableBatch(false, QueryId.getDefaultInstance(), 1, 1, 1, 1, getRandomBatch(c2.getAllocator(), 5000)));
        }
        assertTrue(max.get() > 2700);
        Thread.sleep(5000);
    } catch (Exception | AssertionError ex) {
        fail();
    } finally {
        server.close();
        connectionManager.close();
        c2.close();
    }
}
Also used : WorkerBee(org.apache.drill.exec.work.WorkManager.WorkerBee) ScanResult(org.apache.drill.common.scanner.persistence.ScanResult) FragmentWritableBatch(org.apache.drill.exec.record.FragmentWritableBatch) DrillbitEndpoint(org.apache.drill.exec.proto.CoordinationProtos.DrillbitEndpoint) RpcException(org.apache.drill.exec.rpc.RpcException) FragmentSetupException(org.apache.drill.exec.exception.FragmentSetupException) DrillbitStartupException(org.apache.drill.exec.exception.DrillbitStartupException) UserRemoteException(org.apache.drill.common.exceptions.UserRemoteException) IOException(java.io.IOException) FragmentManager(org.apache.drill.exec.work.fragment.FragmentManager) WorkEventBus(org.apache.drill.exec.rpc.control.WorkEventBus) AtomicLong(java.util.concurrent.atomic.AtomicLong) DrillbitEndpoint(org.apache.drill.exec.proto.CoordinationProtos.DrillbitEndpoint) DrillConfig(org.apache.drill.common.config.DrillConfig) BootStrapContext(org.apache.drill.exec.server.BootStrapContext) SecurityTest(org.apache.drill.categories.SecurityTest) Test(org.junit.Test)

Example 18 with FragmentManager

use of org.apache.drill.exec.work.fragment.FragmentManager in project drill by apache.

the class DataServerRequestHandler method submit.

private void submit(IncomingDataBatch batch, int minorStart, int minorStopExclusive) throws FragmentSetupException, IOException {
    for (int minor = minorStart; minor < minorStopExclusive; minor++) {
        final FragmentManager manager = workBus.getFragmentManager(getHandle(batch.getHeader(), minor));
        if (manager == null) {
            // A missing manager means the query already terminated. We can simply drop this data.
            continue;
        }
        final boolean canRun = manager.handle(batch);
        if (canRun) {
            // logger.debug("Arriving batch means local batch can run, starting local batch.");
            /*
         * If we've reached the canRun threshold, we'll proceed. This expects manager.handle() to only return a single
         * true. This is guaranteed by the interface.
         */
            bee.startFragmentPendingRemote(manager);
        }
    }
}
Also used : FragmentManager(org.apache.drill.exec.work.fragment.FragmentManager)

Aggregations

FragmentManager (org.apache.drill.exec.work.fragment.FragmentManager)18 AtomicLong (java.util.concurrent.atomic.AtomicLong)11 DrillConfig (org.apache.drill.common.config.DrillConfig)11 DrillbitEndpoint (org.apache.drill.exec.proto.CoordinationProtos.DrillbitEndpoint)11 FragmentWritableBatch (org.apache.drill.exec.record.FragmentWritableBatch)11 Test (org.junit.Test)11 BootStrapContext (org.apache.drill.exec.server.BootStrapContext)10 WorkEventBus (org.apache.drill.exec.rpc.control.WorkEventBus)9 WorkerBee (org.apache.drill.exec.work.WorkManager.WorkerBee)9 IOException (java.io.IOException)6 SecurityTest (org.apache.drill.categories.SecurityTest)6 ScanResult (org.apache.drill.common.scanner.persistence.ScanResult)6 FragmentSetupException (org.apache.drill.exec.exception.FragmentSetupException)6 ExecTest (org.apache.drill.exec.ExecTest)5 UserRemoteException (org.apache.drill.common.exceptions.UserRemoteException)4 DrillbitStartupException (org.apache.drill.exec.exception.DrillbitStartupException)4 RpcException (org.apache.drill.exec.rpc.RpcException)4 FragmentContextImpl (org.apache.drill.exec.ops.FragmentContextImpl)3 FragmentHandle (org.apache.drill.exec.proto.ExecProtos.FragmentHandle)3 FragmentExecutor (org.apache.drill.exec.work.fragment.FragmentExecutor)3