Examples of MinorFragmentProfile


Examples of org.apache.drill.exec.proto.UserBitShared.MinorFragmentProfile

  private volatile long lastStatusUpdate = 0;
  private final DrillbitEndpoint endpoint;

  public FragmentData(FragmentHandle handle, DrillbitEndpoint endpoint, boolean isLocal) {
    super();
    MinorFragmentProfile f = MinorFragmentProfile.newBuilder().setState(FragmentState.SENDING).setMinorFragmentId(handle.getMinorFragmentId()).build();
    this.status = FragmentStatus.newBuilder().setHandle(handle).setProfile(f).build();
    this.endpoint = endpoint;
    this.isLocal = isLocal;
  }
View Full Code Here

Examples of org.apache.drill.exec.proto.UserBitShared.MinorFragmentProfile

  private volatile long lastStatusUpdate = 0;
  private final DrillbitEndpoint endpoint;

  public FragmentData(FragmentHandle handle, DrillbitEndpoint endpoint, boolean isLocal) {
    super();
    MinorFragmentProfile f = MinorFragmentProfile.newBuilder() //
        .setState(FragmentState.SENDING) //
        .setMinorFragmentId(handle.getMinorFragmentId()) //
        .setEndpoint(endpoint) //
        .build();
    this.status = FragmentStatus.newBuilder().setHandle(handle).setProfile(f).build();
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.