blob: 6051fcddcdad4665dc02ecce74b5c29b8a63ec6b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.drill.exec.store.mongo;
import java.io.File;
import java.io.IOException;
import java.net.URISyntaxException;
import org.apache.drill.shaded.guava.com.google.common.io.Resources;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import de.flapdoodle.embed.mongo.Command;
import de.flapdoodle.embed.mongo.MongoImportExecutable;
import de.flapdoodle.embed.mongo.MongoImportProcess;
import de.flapdoodle.embed.mongo.MongoImportStarter;
import de.flapdoodle.embed.mongo.config.IMongoImportConfig;
import de.flapdoodle.embed.mongo.config.MongoImportConfigBuilder;
import de.flapdoodle.embed.mongo.config.Net;
import de.flapdoodle.embed.mongo.config.RuntimeConfigBuilder;
import de.flapdoodle.embed.mongo.distribution.Version;
import de.flapdoodle.embed.process.config.IRuntimeConfig;
import de.flapdoodle.embed.process.runtime.Network;
public class TestTableGenerator implements MongoTestConstants {
private static final Logger logger = LoggerFactory
.getLogger(TestTableGenerator.class);
public static void importData(String dbName, String collectionName,
String fileName) throws InterruptedException, IOException, URISyntaxException {
File jsonFile = new File(Resources.getResource(fileName).toURI());
generateTable(dbName, collectionName, jsonFile.getAbsolutePath(), true, true, false);
}
public static void generateTable(String dbName, String collection,
String jsonFile, Boolean jsonArray, Boolean upsert, Boolean drop)
throws InterruptedException, IOException {
logger.info("Started importing file {} into collection {} ", jsonFile,
collection);
IMongoImportConfig mongoImportConfig = new MongoImportConfigBuilder()
.version(Version.Main.V3_4)
.net(new Net(MONGOS_PORT, Network.localhostIsIPv6())).db(dbName)
.collection(collection).upsert(upsert).dropCollection(drop)
.jsonArray(jsonArray).importFile(jsonFile).build();
// Configure to write Mongo message to the log. Change this to
// .getDefaultInstance() if needed for debugging; will write to
// the console instead.
IRuntimeConfig rtConfig = new RuntimeConfigBuilder()
.defaultsWithLogger(Command.MongoImport, logger)
.daemonProcess(false)
.build();
MongoImportExecutable importExecutable = MongoImportStarter
.getInstance(rtConfig).prepare(mongoImportConfig);
MongoImportProcess importProcess = importExecutable.start();
// import is in a separate process, we should wait until the process exit
while (importProcess.isProcessRunning()) {
Thread.sleep(1000);
}
logger.info("Imported file {} into collection {} ", jsonFile, collection);
}
}