Class ProducerConfig
java.lang.Object
org.apache.kafka.common.config.AbstractConfig
org.apache.kafka.clients.producer.ProducerConfig
public class ProducerConfig extends AbstractConfig
Configuration for the Kafka Producer. Documentation for these configurations can be found in the Kafka documentation
-
Field Summary
Fields inherited from class org.apache.kafka.common.config.AbstractConfig
CONFIG_PROVIDERS_CONFIG
-
Constructor Summary
Constructors Constructor Description ProducerConfig(Map<String,Object> props)
ProducerConfig(Properties props)
-
Method Summary
Modifier and Type Method Description static ConfigDef
configDef()
static Set<String>
configNames()
static void
main(String[] args)
protected Map<String,Object>
postProcessParsedConfig(Map<String,Object> parsedValues)
Called directly after user configs got parsed (and thus default values got set).Methods inherited from class org.apache.kafka.common.config.AbstractConfig
documentationOf, equals, get, getBoolean, getClass, getConfiguredInstance, getConfiguredInstance, getConfiguredInstances, getConfiguredInstances, getConfiguredInstances, getDouble, getInt, getList, getLong, getPassword, getShort, getString, hashCode, ignore, logUnused, nonInternalValues, originals, originals, originalsStrings, originalsWithPrefix, originalsWithPrefix, typeOf, unused, values, valuesWithPrefixAllOrNothing, valuesWithPrefixOverride
-
Field Details
-
BOOTSTRAP_SERVERS_CONFIG
bootstrap.servers
- See Also:
- Constant Field Values
-
CLIENT_DNS_LOOKUP_CONFIG
client.dns.lookup
- See Also:
- Constant Field Values
-
METADATA_MAX_AGE_CONFIG
metadata.max.age.ms
- See Also:
- Constant Field Values
-
METADATA_MAX_IDLE_CONFIG
metadata.max.idle.ms
- See Also:
- Constant Field Values
-
BATCH_SIZE_CONFIG
batch.size
- See Also:
- Constant Field Values
-
ACKS_CONFIG
acks
- See Also:
- Constant Field Values
-
LINGER_MS_CONFIG
linger.ms
- See Also:
- Constant Field Values
-
REQUEST_TIMEOUT_MS_CONFIG
request.timeout.ms
- See Also:
- Constant Field Values
-
DELIVERY_TIMEOUT_MS_CONFIG
delivery.timeout.ms
- See Also:
- Constant Field Values
-
CLIENT_ID_CONFIG
client.id
- See Also:
- Constant Field Values
-
SEND_BUFFER_CONFIG
send.buffer.bytes
- See Also:
- Constant Field Values
-
RECEIVE_BUFFER_CONFIG
receive.buffer.bytes
- See Also:
- Constant Field Values
-
MAX_REQUEST_SIZE_CONFIG
max.request.size
- See Also:
- Constant Field Values
-
RECONNECT_BACKOFF_MS_CONFIG
reconnect.backoff.ms
- See Also:
- Constant Field Values
-
RECONNECT_BACKOFF_MAX_MS_CONFIG
reconnect.backoff.max.ms
- See Also:
- Constant Field Values
-
MAX_BLOCK_MS_CONFIG
max.block.ms
- See Also:
- Constant Field Values
-
BUFFER_MEMORY_CONFIG
buffer.memory
- See Also:
- Constant Field Values
-
RETRY_BACKOFF_MS_CONFIG
retry.backoff.ms
- See Also:
- Constant Field Values
-
COMPRESSION_TYPE_CONFIG
compression.type
- See Also:
- Constant Field Values
-
METRICS_SAMPLE_WINDOW_MS_CONFIG
metrics.sample.window.ms
- See Also:
- Constant Field Values
-
METRICS_NUM_SAMPLES_CONFIG
metrics.num.samples
- See Also:
- Constant Field Values
-
METRICS_RECORDING_LEVEL_CONFIG
metrics.recording.level
- See Also:
- Constant Field Values
-
METRIC_REPORTER_CLASSES_CONFIG
metric.reporters
- See Also:
- Constant Field Values
-
MAX_IN_FLIGHT_REQUESTS_PER_CONNECTION
max.in.flight.requests.per.connection
- See Also:
- Constant Field Values
-
RETRIES_CONFIG
retries
- See Also:
- Constant Field Values
-
KEY_SERIALIZER_CLASS_CONFIG
key.serializer
- See Also:
- Constant Field Values
-
KEY_SERIALIZER_CLASS_DOC
- See Also:
- Constant Field Values
-
VALUE_SERIALIZER_CLASS_CONFIG
value.serializer
- See Also:
- Constant Field Values
-
VALUE_SERIALIZER_CLASS_DOC
- See Also:
- Constant Field Values
-
SOCKET_CONNECTION_SETUP_TIMEOUT_MS_CONFIG
socket.connection.setup.timeout.ms
- See Also:
- Constant Field Values
-
SOCKET_CONNECTION_SETUP_TIMEOUT_MAX_MS_CONFIG
socket.connection.setup.timeout.max.ms
- See Also:
- Constant Field Values
-
CONNECTIONS_MAX_IDLE_MS_CONFIG
connections.max.idle.ms
- See Also:
- Constant Field Values
-
PARTITIONER_CLASS_CONFIG
partitioner.class
- See Also:
- Constant Field Values
-
INTERCEPTOR_CLASSES_CONFIG
interceptor.classes
- See Also:
- Constant Field Values
-
INTERCEPTOR_CLASSES_DOC
- See Also:
- Constant Field Values
-
ENABLE_IDEMPOTENCE_CONFIG
enable.idempotence
- See Also:
- Constant Field Values
-
ENABLE_IDEMPOTENCE_DOC
- See Also:
- Constant Field Values
-
TRANSACTION_TIMEOUT_CONFIG
transaction.timeout.ms
- See Also:
- Constant Field Values
-
TRANSACTION_TIMEOUT_DOC
- See Also:
- Constant Field Values
-
TRANSACTIONAL_ID_CONFIG
transactional.id
- See Also:
- Constant Field Values
-
TRANSACTIONAL_ID_DOC
- See Also:
- Constant Field Values
-
SECURITY_PROVIDERS_CONFIG
security.providers
- See Also:
- Constant Field Values
-
-
Constructor Details
-
ProducerConfig
-
ProducerConfig
-
-
Method Details
-
postProcessParsedConfig
Description copied from class:AbstractConfig
Called directly after user configs got parsed (and thus default values got set). This allows to change default values for "secondary defaults" if required.- Overrides:
postProcessParsedConfig
in classAbstractConfig
- Parameters:
parsedValues
- unmodifiable map of current configuration- Returns:
- a map of updates that should be applied to the configuration (will be validated to prevent bad updates)
-
configNames
-
configDef
-
main
-