Examples of EdgeManagerDescriptor


Examples of org.apache.tez.dag.api.EdgeManagerDescriptor

      // If CUSTOM without an edge manager, setup a fake edge manager. Avoid
      // referencing the fake edge manager within the API module.
      if (edgeProperty.getDataMovementType() == DataMovementType.CUSTOM
          && edgeProperty.getEdgeManagerDescriptor() == null) {
        EdgeManagerDescriptor edgeDesc = new EdgeManagerDescriptor(
            NullEdgeManager.class.getName());
        EdgeProperty ep = new EdgeProperty(edgeDesc, edgeProperty.getDataSourceType(),
            edgeProperty.getSchedulingType(), edgeProperty.getEdgeSource(),
            edgeProperty.getEdgeDestination());
        edgeProperty = ep;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.