org.apache.gobblin.kafka.writer.KafkaWriterConfigurationKeys Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gobblin-kafka-common Show documentation
Show all versions of gobblin-kafka-common Show documentation
A distributed data integration framework for streaming and batch data ecosystems.
/*
* 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.gobblin.kafka.writer;
/**
* Configuration keys for a KafkaWriter.
*/
public class KafkaWriterConfigurationKeys {
/** Writer specific configuration keys go here **/
public static final String KAFKA_TOPIC = "writer.kafka.topic";
static final String KAFKA_WRITER_PRODUCER_CLASS = "writer.kafka.producerClass";
static final String KAFKA_WRITER_PRODUCER_CLASS_DEFAULT = "org.apache.kafka.clients.producer.KafkaProducer";
static final String COMMIT_TIMEOUT_MILLIS_CONFIG = "writer.kafka.commitTimeoutMillis";
static final long COMMIT_TIMEOUT_MILLIS_DEFAULT = 60000; // 1 minute
static final String COMMIT_STEP_WAIT_TIME_CONFIG = "writer.kafka.commitStepWaitTimeMillis";
static final long COMMIT_STEP_WAIT_TIME_DEFAULT = 500; // 500ms
static final String FAILURE_ALLOWANCE_PCT_CONFIG = "writer.kafka.failureAllowancePercentage";
static final double FAILURE_ALLOWANCE_PCT_DEFAULT = 20.0;
/**
* Kafka producer configurations will be passed through as is as long as they are prefixed
* by the PREFIX specified below.
*/
public static final String KAFKA_PRODUCER_CONFIG_PREFIX_NO_DOT = "writer.kafka.producerConfig";
public static final String KAFKA_PRODUCER_CONFIG_PREFIX = KAFKA_PRODUCER_CONFIG_PREFIX_NO_DOT + ".";
/** Kafka producer scoped configuration keys go here **/
static final String KEY_SERIALIZER_CONFIG = "key.serializer";
static final String DEFAULT_KEY_SERIALIZER = "org.apache.kafka.common.serialization.StringSerializer";
static final String VALUE_SERIALIZER_CONFIG = "value.serializer";
static final String DEFAULT_VALUE_SERIALIZER = "org.apache.kafka.common.serialization.ByteArraySerializer";
static final String CLIENT_ID_CONFIG = "client.id";
static final String CLIENT_ID_DEFAULT = "gobblin";
static final String KAFKA_SCHEMA_REGISTRY_SWITCH_NAME = "kafka.schemaRegistry.switchName";
static final String KAFKA_SCHEMA_REGISTRY_SWITCH_NAME_DEFAULT = "true";
public static final String KAFKA_TOPIC_CONFIG = "writer.kafka.";
static final String TOPIC_NAME = "topic";
public static final String CLUSTER_ZOOKEEPER = KAFKA_TOPIC_CONFIG + "zookeeper";
static final String REPLICATION_COUNT = KAFKA_TOPIC_CONFIG + "replicationCount";
static final int REPLICATION_COUNT_DEFAULT = 1;
static final String PARTITION_COUNT = KAFKA_TOPIC_CONFIG + "partitionCount";
static final int PARTITION_COUNT_DEFAULT = 1;
public static final String ZOOKEEPER_SESSION_TIMEOUT = CLUSTER_ZOOKEEPER + ".sto";
static final int ZOOKEEPER_SESSION_TIMEOUT_DEFAULT = 10000; // 10 seconds
public static final String ZOOKEEPER_CONNECTION_TIMEOUT = CLUSTER_ZOOKEEPER + ".cto";
static final int ZOOKEEPER_CONNECTION_TIMEOUT_DEFAULT = 8000; // 8 seconds
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy