Package org.apache.tajo.master.event

Examples of org.apache.tajo.master.event.QueryEvent


    LOG.info("Launch Container:" + executionBlockId + "," + containerID.getId() + "," +
        container.getId() + "," + container.getNodeId() + ", pullServer=" + port);

    assignExecutionBlock(executionBlockId, container);

    context.getEventHandler().handle(new QueryEvent(context.getQueryId(), QueryEventType.INIT_COMPLETED));
  }
View Full Code Here


        this.state = ContainerState.FAILED;
        throw new IllegalStateException("Invalid shuffle port number "
            + port + " returned for " + containerID);
      }

      context.getEventHandler().handle(new QueryEvent(context.getQueryId(), QueryEventType.INIT_COMPLETED));

      this.state = ContainerState.RUNNING;
      this.hostName = containerMgrAddress.split(":")[0];
      context.getResourceAllocator().addContainer(containerID, this);
    } catch (Throwable t) {
View Full Code Here

TOP

Related Classes of org.apache.tajo.master.event.QueryEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.