Package org.apache.tajo.master

Examples of org.apache.tajo.master.TaskRunnerGroupEvent


        // TODO - This is debugging message. Should be removed
        subQuery.i++;
      }
      LOG.info("SubQuery (" + subQuery.getId() + ") has " + subQuery.i + " containers!");
      subQuery.eventHandler.handle(
          new TaskRunnerGroupEvent(EventType.CONTAINER_REMOTE_LAUNCH,
              subQuery.getId(), allocationEvent.getAllocatedContainer()));

      subQuery.eventHandler.handle(new SubQueryEvent(subQuery.getId(), SubQueryEventType.SQ_START));
    }
View Full Code Here


    }
  }

  private void releaseContainers() {
    // If there are still live TaskRunners, try to kill the containers.
    eventHandler.handle(new TaskRunnerGroupEvent(EventType.CONTAINER_REMOTE_CLEANUP ,getId(),
        containers.values()));
  }
View Full Code Here

TOP

Related Classes of org.apache.tajo.master.TaskRunnerGroupEvent

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.