Package org.apache.accumulo.core.util

Examples of org.apache.accumulo.core.util.BulkImportHelper$AssignmentTask


   * @throws AccumuloSecurityException
   *           when the user does not have the proper permissions
   */
  public AssignmentStats importDirectory(String tableName, String dir, String failureDir, int numThreads, int numAssignThreads, boolean disableGC)
      throws IOException, AccumuloException, AccumuloSecurityException {
    return new BulkImportHelper(instance, credentials, tableName).importDirectory(new Path(dir), new Path(failureDir), numThreads, numAssignThreads, disableGC);
  }
View Full Code Here


   * @throws AccumuloSecurityException
   *           when the user does not have the proper permissions
   */
  public AssignmentStats importDirectory(String tableName, String dir, String failureDir, int numThreads, int numAssignThreads, boolean disableGC)
      throws IOException, AccumuloException, AccumuloSecurityException {
    return new BulkImportHelper(instance, credentials, tableName).importDirectory(new Path(dir), new Path(failureDir), numThreads, numAssignThreads, disableGC);
  }
View Full Code Here

TOP

Related Classes of org.apache.accumulo.core.util.BulkImportHelper$AssignmentTask

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.