Package org.apache.tajo.storage

Examples of org.apache.tajo.storage.DataLocation


  private void addDataLocation(FileFragment fragment) {
    String[] hosts = fragment.getHosts();
    int[] diskIds = fragment.getDiskIds();
    for (int i = 0; i < hosts.length; i++) {
      dataLocations.add(new DataLocation(hosts[i], diskIds[i]));
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.tajo.storage.DataLocation

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.