| /** |
| * 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.pulsar.io.kafka.connect; |
| |
| import com.fasterxml.jackson.databind.ObjectMapper; |
| import com.fasterxml.jackson.dataformat.yaml.YAMLFactory; |
| import lombok.Data; |
| import lombok.experimental.Accessors; |
| |
| import java.io.File; |
| import java.io.IOException; |
| import java.io.Serializable; |
| import java.util.Map; |
| import org.apache.pulsar.io.core.annotations.FieldDoc; |
| |
| @Data |
| @Accessors(chain = true) |
| public class PulsarKafkaConnectSinkConfig implements Serializable { |
| |
| private static final long serialVersionUID = 1L; |
| |
| @FieldDoc( |
| defaultValue = "16384", |
| help = "Size of messages in bytes the sink will attempt to batch messages together before flush.") |
| private int batchSize = 16384; |
| |
| @FieldDoc( |
| defaultValue = "2147483647L", |
| help = "Time interval in milliseconds the sink will attempt to batch messages together before flush.") |
| private long lingerTimeMs = 2147483647L; |
| |
| @FieldDoc( |
| required = true, |
| defaultValue = "", |
| help = "The Kafka topic name that passed to kafka sink.") |
| private String topic; |
| |
| @FieldDoc( |
| required = true, |
| defaultValue = "", |
| help = "A kafka-connector sink class to use.") |
| private String kafkaConnectorSinkClass; |
| |
| @FieldDoc( |
| defaultValue = "", |
| help = "Config properties to pass to the kafka connector.") |
| private Map<String, String> kafkaConnectorConfigProperties; |
| |
| @FieldDoc( |
| required = true, |
| defaultValue = "", |
| help = "Pulsar topic to store offsets at.") |
| private String offsetStorageTopic; |
| |
| /* |
| This is used to configure PulsarOffsetBackingStore. |
| It will become unnecessary after the PulsarClient is exposed to the context. |
| */ |
| @FieldDoc( |
| required = true, |
| defaultValue = "", |
| help = "Pulsar service URL to use for the offset store.") |
| private String pulsarServiceUrl; |
| |
| @FieldDoc( |
| defaultValue = "true", |
| help = "In case of Record<KeyValue<>> data use key from KeyValue<> instead of one from Record.") |
| private boolean unwrapKeyValueIfAvailable = true; |
| |
| public static PulsarKafkaConnectSinkConfig load(String yamlFile) throws IOException { |
| ObjectMapper mapper = new ObjectMapper(new YAMLFactory()); |
| return mapper.readValue(new File(yamlFile), PulsarKafkaConnectSinkConfig.class); |
| } |
| |
| public static PulsarKafkaConnectSinkConfig load(Map<String, Object> map) throws IOException { |
| ObjectMapper mapper = new ObjectMapper(); |
| return mapper.readValue(new ObjectMapper().writeValueAsString(map), PulsarKafkaConnectSinkConfig.class); |
| } |
| } |