Package org.springframework.yarn.batch.event

Examples of org.springframework.yarn.batch.event.PartitionedStepExecutionEvent


          masterExecutions.put(entry.getKey(), set);
        }
        if (set.size() == 0) {
          // we consumed all executions, send complete event
          // TODO: we could track failures
          getYarnEventPublisher().publishEvent(new PartitionedStepExecutionEvent(this, entry.getKey()));
          stepExecutionStateListener.state(PartitionedStepExecutionState.COMPLETED, entry.getKey());
        }
      }
    } else {
      log.warn("No assigned step execution for containerId=" + containerId);
View Full Code Here

TOP

Related Classes of org.springframework.yarn.batch.event.PartitionedStepExecutionEvent

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.