com.couchbase.connect.kafka.CouchbaseSourceConnector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kafka-connect-couchbase Show documentation
Show all versions of kafka-connect-couchbase Show documentation
A Kafka Connect Couchbase connector for copying data between Kafka and Couchbase Server.
The newest version!
/*
* Copyright 2016 Couchbase, Inc.
*
* 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 com.couchbase.connect.kafka;
import com.couchbase.client.core.config.CouchbaseBucketConfig;
import com.couchbase.client.dcp.util.PartitionSet;
import com.couchbase.client.java.Bucket;
import com.couchbase.connect.kafka.config.source.CouchbaseSourceConfig;
import com.couchbase.connect.kafka.config.source.CouchbaseSourceTaskConfig;
import com.couchbase.connect.kafka.util.CouchbaseHelper;
import com.couchbase.connect.kafka.util.ListHelper;
import com.couchbase.connect.kafka.util.Version;
import com.couchbase.connect.kafka.util.config.ConfigHelper;
import org.apache.kafka.common.config.ConfigDef;
import org.apache.kafka.common.config.ConfigException;
import org.apache.kafka.connect.connector.Task;
import org.apache.kafka.connect.errors.ConnectException;
import org.apache.kafka.connect.source.SourceConnector;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.IntStream;
import static com.couchbase.connect.kafka.util.config.ConfigHelper.keyName;
import static java.util.stream.Collectors.toList;
public class CouchbaseSourceConnector extends SourceConnector {
private Map configProperties;
private int numPartitions;
private final ConnectorLifecycle lifecycle = new ConnectorLifecycle();
@Override
public String version() {
return Version.getVersion();
}
@Override
public void start(Map properties) {
lifecycle.logConnectorStarted(properties.get("name"));
try {
configProperties = properties;
CouchbaseSourceConfig config = ConfigHelper.parse(CouchbaseSourceConfig.class, properties);
if (config.bucket().isEmpty()) {
String propertyName = keyName(CouchbaseSourceConfig.class, CouchbaseSourceConfig::bucket);
throw new ConfigException("Missing required config property: " + propertyName);
}
try (KafkaCouchbaseClient client = new KafkaCouchbaseClient(config)) {
Bucket bucket = client.bucket();
numPartitions = ((CouchbaseBucketConfig) CouchbaseHelper.getConfig(bucket, config.bootstrapTimeout())).numberOfPartitions();
}
} catch (ConfigException e) {
throw new ConnectException("Cannot start CouchbaseSourceConnector due to configuration error", e);
}
}
@Override
public Class extends Task> taskClass() {
return CouchbaseSourceTask.class;
}
private List splitPartitions(int maxTasks) {
List partitions = IntStream.range(0, numPartitions)
.boxed()
.collect(toList());
return ListHelper.chunks(partitions, maxTasks).stream()
.filter(list -> !list.isEmpty()) // remove empty chunks (no work for task to do)
.map(PartitionSet::from)
.collect(toList());
}
@Override
public List