Package org.apache.accumulo.core.cli

Examples of org.apache.accumulo.core.cli.ClientOnDefaultTable


    return result;
  }
 
  static public void main(String[] args) {
   
    ClientOnDefaultTable opts = new ClientOnDefaultTable("test_ingest");
    ScannerOpts scanOpts = new ScannerOpts();
    BatchWriterOpts bwOpts = new BatchWriterOpts();
    opts.parseArgs(TestRandomDeletes.class.getName(), args, scanOpts, bwOpts);
   
    log.info("starting random delete test");

   
    try {
      long deleted = 0;
     
      String tableName = opts.getTableName();
     
      TreeSet<RowColumn> doomed = scanAll(opts, scanOpts, tableName);
      log.info("Got " + doomed.size() + " rows");
     
      long startTime = System.currentTimeMillis();
View Full Code Here

TOP

Related Classes of org.apache.accumulo.core.cli.ClientOnDefaultTable

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.