Package co.adhoclabs.ironcushion.bulkinsert

Examples of co.adhoclabs.ironcushion.bulkinsert.BulkInsertDocumentGenerator


    String bulkInsertPath = sb.toString();

    List<BulkInsertDocumentGenerator> allBulkInsertDocumentGenerators = new ArrayList<BulkInsertDocumentGenerator>(
        parsedArguments.numConnections);
    for (int i = 0; i < parsedArguments.numConnections; ++i) {
      BulkInsertDocumentGenerator bulkInsertDocumentGenerator = BulkInsertDocumentGenerator.onDemand(
          schema, new ValueGenerator(words, rng), i,
          parsedArguments.numDocumentsPerBulkInsert,
          parsedArguments.numBulkInsertOperations);
      allBulkInsertDocumentGenerators.add(bulkInsertDocumentGenerator);
    }
View Full Code Here

TOP

Related Classes of co.adhoclabs.ironcushion.bulkinsert.BulkInsertDocumentGenerator

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.