in bulkimport/src/main/java/com/microsoft/azure/documentdb/bulkimport/DocumentBulkImporter.java [144:157]
public DocumentBulkImporter build() throws Exception {
DocumentBulkImporter importer = new DocumentBulkImporter(client, collectionLink, partitionKeyDef, offerThroughput);
try {
importer.setInitializationRetryOptions(retryOptions);
importer.setMaxMiniBatchSize(maxMiniBatchSize);
importer.safeInit();
} catch (Exception e) {
importer.close();
throw e;
}
return importer;
}