at.grahsl.kafka.connect.mongodb.cdc.debezium.rdbms.RdbmsHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kafka-connect-mongodb Show documentation
Show all versions of kafka-connect-mongodb Show documentation
A Kafka connect MongoDB sink connector.
The newest version!
/*
* Copyright (c) 2017. Hans-Peter Grahsl ([email protected])
*
* Licensed 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 at.grahsl.kafka.connect.mongodb.cdc.debezium.rdbms;
import at.grahsl.kafka.connect.mongodb.MongoDbSinkConnectorConfig;
import at.grahsl.kafka.connect.mongodb.cdc.CdcOperation;
import at.grahsl.kafka.connect.mongodb.cdc.debezium.DebeziumCdcHandler;
import at.grahsl.kafka.connect.mongodb.cdc.debezium.OperationType;
import at.grahsl.kafka.connect.mongodb.converter.SinkDocument;
import com.mongodb.DBCollection;
import com.mongodb.client.model.WriteModel;
import org.apache.kafka.connect.errors.DataException;
import org.bson.BsonDocument;
import org.bson.BsonInvalidOperationException;
import org.bson.BsonObjectId;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.stream.Stream;
public class RdbmsHandler extends DebeziumCdcHandler {
public static final String JSON_DOC_BEFORE_FIELD = "before";
public static final String JSON_DOC_AFTER_FIELD = "after";
private static Logger logger = LoggerFactory.getLogger(RdbmsHandler.class);
public RdbmsHandler(MongoDbSinkConnectorConfig config) {
super(config);
final Map operations = new HashMap<>();
operations.put(OperationType.CREATE,new RdbmsInsert());
operations.put(OperationType.READ,new RdbmsInsert());
operations.put(OperationType.UPDATE,new RdbmsUpdate());
operations.put(OperationType.DELETE,new RdbmsDelete());
registerOperations(operations);
}
public RdbmsHandler(MongoDbSinkConnectorConfig config,
Map operations) {
super(config);
registerOperations(operations);
}
public RdbmsHandler(MongoDbSinkConnectorConfig config, List supportedTypes) {
super(config);
final Map operations = new HashMap<>();
Stream.of(OperationType.values()).forEach(ot -> operations.put(ot, new RdbmsNoOp()));
supportedTypes.forEach(ot -> {
switch (ot) {
case CREATE:
case READ:
operations.put(ot,new RdbmsInsert());
break;
case UPDATE:
operations.put(ot,new RdbmsUpdate());
break;
case DELETE:
operations.put(ot,new RdbmsDelete());
break;
}
});
registerOperations(operations);
}
@Override
public Optional> handle(SinkDocument doc) {
BsonDocument keyDoc = doc.getKeyDoc().orElseGet(BsonDocument::new);
BsonDocument valueDoc = doc.getValueDoc().orElseGet(BsonDocument::new);
if (valueDoc.isEmpty()) {
logger.debug("skipping debezium tombstone event for kafka topic compaction");
return Optional.empty();
}
return Optional.ofNullable(getCdcOperation(valueDoc)
.perform(new SinkDocument(keyDoc,valueDoc)));
}
protected static BsonDocument generateFilterDoc(BsonDocument keyDoc, BsonDocument valueDoc, OperationType opType) {
if (keyDoc.keySet().isEmpty()) {
if (opType.equals(OperationType.CREATE) || opType.equals(OperationType.READ)) {
//create: no PK info in keyDoc -> generate ObjectId
return new BsonDocument(DBCollection.ID_FIELD_NAME,new BsonObjectId());
}
//update or delete: no PK info in keyDoc -> take everything in 'before' field
try {
BsonDocument filter = valueDoc.getDocument(JSON_DOC_BEFORE_FIELD);
if (filter.isEmpty())
throw new BsonInvalidOperationException("value doc before field is empty");
return filter;
} catch(BsonInvalidOperationException exc) {
throw new DataException("error: value doc 'before' field is empty or has invalid type" +
" for update/delete operation which seems severely wrong -> defensive actions taken!",exc);
}
}
//build filter document composed of all PK columns
BsonDocument pk = new BsonDocument();
for (String f : keyDoc.keySet()) {
pk.put(f,keyDoc.get(f));
}
return new BsonDocument(DBCollection.ID_FIELD_NAME,pk);
}
protected static BsonDocument generateUpsertOrReplaceDoc(BsonDocument keyDoc, BsonDocument valueDoc, BsonDocument filterDoc) {
if (!valueDoc.containsKey(JSON_DOC_AFTER_FIELD)
|| valueDoc.get(JSON_DOC_AFTER_FIELD).isNull()
|| !valueDoc.get(JSON_DOC_AFTER_FIELD).isDocument()
|| valueDoc.getDocument(JSON_DOC_AFTER_FIELD).isEmpty()) {
throw new DataException("error: valueDoc must contain non-empty 'after' field" +
" of type document for insert/update operation");
}
BsonDocument upsertDoc = new BsonDocument();
if(filterDoc.containsKey(DBCollection.ID_FIELD_NAME)) {
upsertDoc.put(DBCollection.ID_FIELD_NAME,filterDoc.get(DBCollection.ID_FIELD_NAME));
}
BsonDocument afterDoc = valueDoc.getDocument(JSON_DOC_AFTER_FIELD);
for (String f : afterDoc.keySet()) {
if (!keyDoc.containsKey(f)) {
upsertDoc.put(f,afterDoc.get(f));
}
}
return upsertDoc;
}
}