blob: 80d04650c96eb0ea82e6ca34c3ddfd1651051067 [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.config;
import java.io.IOException;
import java.util.Objects;
import com.mongodb.ConnectionString;
import com.mongodb.client.MongoClient;
import com.mongodb.client.MongoClients;
import org.apache.drill.exec.store.mongo.DrillMongoConstants;
import org.apache.drill.exec.store.sys.PersistentStore;
import org.apache.drill.exec.store.sys.PersistentStoreConfig;
import org.apache.drill.exec.store.sys.PersistentStoreRegistry;
import org.apache.drill.exec.store.sys.store.provider.BasePersistentStoreProvider;
import org.bson.Document;
import org.bson.conversions.Bson;
import com.mongodb.WriteConcern;
import com.mongodb.client.MongoCollection;
import com.mongodb.client.MongoDatabase;
import com.mongodb.client.model.Indexes;
public class MongoPersistentStoreProvider extends BasePersistentStoreProvider {
static final String pKey = "pKey";
private MongoClient client;
private MongoCollection<Document> collection;
private final String mongoURL;
public MongoPersistentStoreProvider(PersistentStoreRegistry<?> registry) {
mongoURL = registry.getConfig().getString(DrillMongoConstants.SYS_STORE_PROVIDER_MONGO_URL);
}
@Override
public void start() throws IOException {
ConnectionString clientURI = new ConnectionString(mongoURL);
client = MongoClients.create(clientURI);
MongoDatabase db = client.getDatabase(Objects.requireNonNull(clientURI.getDatabase()));
collection = db.getCollection(Objects.requireNonNull(clientURI.getCollection())).withWriteConcern(WriteConcern.JOURNALED);
Bson index = Indexes.ascending(pKey);
collection.createIndex(index);
}
@Override
public <V> PersistentStore<V> getOrCreateStore(PersistentStoreConfig<V> config) {
switch(config.getMode()){
case BLOB_PERSISTENT:
case PERSISTENT:
return new MongoPersistentStore<>(config, collection);
default:
throw new IllegalStateException();
}
}
@Override
public void close() {
if (client != null) {
client.close();
}
}
}