org.apache.seatunnel.datasource.plugin.kafka.KafkaOptionRule Maven / Gradle / Ivy
/*
* 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.seatunnel.datasource.plugin.kafka;
import org.apache.seatunnel.api.configuration.Option;
import org.apache.seatunnel.api.configuration.Options;
import org.apache.seatunnel.api.configuration.util.OptionRule;
import java.util.Map;
public class KafkaOptionRule {
public static final Option BOOTSTRAP_SERVERS =
Options.key("bootstrap.servers")
.stringType()
.noDefaultValue()
.withDescription("Kafka cluster address, separated by \",\".");
public static final Option TOPIC =
Options.key("topic")
.stringType()
.noDefaultValue()
.withDescription(
"Kafka topic name. If there are multiple topics, use , to split, for example: \"tpc1,tpc2\".");
public static final Option PATTERN =
Options.key("pattern")
.booleanType()
.defaultValue(false)
.withDescription(
"If pattern is set to true,the regular expression for a pattern of topic names to read from."
+ " All topics in clients with names that match the specified regular expression will be subscribed by the consumer.");
public static final Option
© 2015 - 2024 Weber Informatics LLC | Privacy Policy