Class KafkaProducer<K,V>
- All Implemented Interfaces:
Closeable
,AutoCloseable
,org.apache.kafka.clients.producer.Producer<K,
V>
The producer is thread safe.
Here is a simple example of using the producer to send records with strings containing sequential numbers as the key/value pairs.
Properties props = new Properties();
props.put("bootstrap.servers", "localhost:1521");
props.put("oracle.service.name", "freepdb1");
props.put("oracle.net.tns_admin", ".");
props.put("linger.ms", 1);
props.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer");
props.put("value.serializer", "org.apache.kafka.common.serialization.StringSerializer");
Producer<String, String> producer = new KafkaProducer<>(props);
for (int i = 0; i < 100; i++)
producer.send(new ProducerRecord<String, String>("my-topic", Integer.toString(i), Integer.toString(i)));
producer.close();
This producer connects to Oracle database instance running on local host on
port 1521. This is specified by property bootstrap.servers
It
connects to service named 'freepdb1' specified using property
oracle.service.name
It reads authentication and other JDBC
driver parameters to connect to Oracle database from the directory specified
via property oracle.net.tns_admin
The producer consists of a pool of buffer space that holds records that haven't yet been transmitted to the server as well as a background I/O thread that is responsible for turning these records into requests and transmitting them to the Oracle database. Failure to close the producer after use will leak these resources.
The send()
method is asynchronous. When called
it adds the record to a buffer of pending record sends and immediately
returns. This allows the producer to batch together individual records for
efficiency.
If the request fails, the producer can automatically retry. The
retries
setting defaults to Integer.MAX_VALUE
.
The producer maintains buffers of unsent records for each partition. These
buffers are of a size specified by the batch.size
config. Making
this larger can result in more batching, but requires more memory (since we
will generally have one of these buffers for each active partition).
By default a buffer is available to send immediately even if there is
additional unused space in the buffer. However if you want to reduce the
number of requests you can set linger.ms
to something greater
than 0. This will instruct the producer to wait up to that number of
milliseconds before sending a request in hope that more records will arrive
to fill up the same batch. This is analogous to Nagle's algorithm in TCP. For
example, in the code snippet above, likely all 100 records would be sent in a
single request since we set our linger time to 1 millisecond. However this
setting would add 1 millisecond of latency to our request waiting for more
records to arrive if we didn't fill up the buffer. Note that records that
arrive close together in time will generally batch together even with
linger.ms=0
so under heavy load batching will occur regardless
of the linger configuration; however setting this to something larger than 0
can lead to fewer, more efficient requests when not under maximal load at the
cost of a small amount of latency.
The buffer.memory
controls the total amount of memory available
to the producer for buffering. If records are sent faster than they can be
transmitted to the server then this buffer space will be exhausted. When the
buffer space is exhausted additional send calls will block. The threshold for
time to block is determined by max.block.ms
after which it
throws a TimeoutException.
The key.serializer
and value.serializer
instruct
how to turn the key and value objects the user provides with their
ProducerRecord
into bytes. You can use the included
ByteArraySerializer
or
StringSerializer
for simple
string or byte types.
From OKafka 23.4, the KafkaProducer supports two additional modes: the idempotent producer and the transactional producer. The idempotent producer strengthens OKafka's delivery semantics from at least once to exactly once delivery. In particular producer retries will no longer introduce duplicates. The transactional producer allows an application to send messages to multiple partitions (and topics!) atomically.
To enable idempotence, the enable.idempotence
configuration must
be set to true. If set, the retries
config will default to
Integer.MAX_VALUE
. There are no API changes for the idempotent
producer, so existing applications will not need to be modified to take
advantage of this feature.
To take advantage of the idempotent producer, it is imperative to avoid
application level re-sends since these cannot be de-duplicated. As such, if
an application enables idempotence, it is recommended to leave the
retries
config unset, as it will be defaulted to
Integer.MAX_VALUE
. Additionally, if a
send(ProducerRecord)
returns an error even with infinite retries
(for instance if the message expires in the buffer before being sent), then
it is recommended to shut down the producer and check the contents of the
last produced message to ensure that it is not duplicated. Finally, the
producer can only guarantee idempotence for messages sent within a single
session.
To use the transactional producer and the attendant APIs, application must
set the oracle.transactional.producer
configuration property to
true
. The transactional producer is not thread safe.
Application should manage the concurrent access of the transactional
producer. Transactional producer does not get benefit of batching. Each
message is sent to Oracle Transactional Event Queue broker in a separate
request.
Transactional producer can use getDBConnection()
to fetch the
database connection which is being used to send the records to the Oracle's
Transactional Event Queue broker. commitTransaction()
will
atomically commit the DML operation(s) and send operation(s) performed within
the current transaction. abortTransaction()
will atomically
roll-back the DML operation and abort the producer records sent within the
current transaction.
All the new transactional APIs are blocking and will throw exceptions on failure. The example below illustrates how the new APIs are meant to be used. It is similar to the example above, except that all 100 messages are part of a single transaction.
Properties props = new Properties();
props.put("bootstrap.servers", "localhost:1521");
props.put("oracle.service.name", "freepdb1");
props.put("oracle.net.tns_admin",".");
props.put("oracle.transactional.producer", "true");
Producer<String, String> producer = new KafkaProducer<>(props, new StringSerializer(), new StringSerializer());
producer.initTransactions();
try {
producer.beginTransaction();
Connection dbConn = ((KafkaProducer<String, String> )producer).getDBConnection();
for (int i = 0; i < 100; i++) {
ProducerRecord pRecord = new ProducerRecord<>("my-topic", Integer.toString(i), Integer.toString(i))
processRecord(dbConn, pRecord);
producer.send(pRecord);
}
producer.commitTransaction();
}catch( DisconnectException dcE) {
// Producer is disconnected from Oracle Transactional Event Queue broker.
producer.close();
}
catch (KafkaException e) {
// For all exceptions, just abort the transaction and try again.
producer.abortTransaction();
}
producer.close();
As is hinted at in the example, there can be only one open transaction per
producer. All messages sent between the beginTransaction()
and
commitTransaction()
calls will be part of a single transaction. When
the transactional.id
is specified, all messages sent by the
producer must be part of a transaction.
The transactional producer uses exceptions to communicate error states. In
particular, it is not required to specify callbacks for
producer.send()
or to call .get()
on the returned
Future. A KafkaException
would be thrown if any of the
producer.send()
or transactional calls hit an recoverable error
during a transaction. A DisconnectException
would be thrown if
producer.commitTransaction()
call hit an irrecoverable error
during commit. At this point producer cannot confirm if the operations
performed within this transaction were successfully committed or not. See the
send(ProducerRecord)
documentation for more details about detecting
errors from a transactional send.
By calling producer.abortTransaction()
upon receiving a
KafkaException
we can ensure that any successful writes are
marked as aborted, hence keeping the transactional guarantees.
OKafka Transactional Producer can also be created by passing a pre-created
Oracle database connection through
KafkaProducer(Properties, Connection)
or similar overloaded
constructors. Application must set the
oracle.transactional.producer
property to true here as well.
Transactional producer created this way can be used for
'consume-transform-produce' workflow. Below example depicts that. Here a
consumer is created. A database connection is retrieved from the
KafkaConsumer and passed to create a KafkaProducer. Consumer consumes records
from "my-topic1". While processing the records, a transaction is started and
within this transaction processed records are send to topic "my-topic2". When
KafkaProducer commits the transaction both the consumed and produced records
are committed. When KafkaProducer aborts the transaction, all consumed and
produced records are rolled-back. Since producer and consumer are using the
same database connection all their operations are either committed or aborted
atomically.
Properties commonProps = new Properties();
Properties cProps = new Properties();
Properties pProps = new Properties();
commonProps.put("bootstrap.servers", "localhost:1521");
commonProps.put("oracle.service.name", "freepdb1");
commonProps.put("oracle.net.tns_admin", ".");
//Create Consumer
cProps.putAll(commonProps);
cProps.put("group.id", "S1");
cProps.put("enable.auto.commit", "false");
Consumer<String, String> consumer = null;
Producer<String, String> producer = null;
try {
consumer = new KafkaConsumer<String, String>(cProps);
consumer.subscribe(Arrays.asList("my-topic1"));
Connection conn = ((KafkaConsumer<String, String>) consumer).getDBConnection();
// Create Producer
pProps.put("oracle.transactional.producer", "true");
producer = new KafkaProducer<String, String>(pProps, conn);
while (true) {
ConsumerRecords<String, String> records = consumer.poll(Duration.ofMillis(10000));
if (records != null && records.count() > 0) {
producer.beginTransaction();
try {
for (ConsumerRecord<String, String> consumerRecord : records) {
ProducerRecord<String, String> pRecord = transform(consumerRecord, "my-topic2");
porducer.send(pRecord);
}
// Commit all consumed and produced records
producer.commitTransaction();
} catch (DisconnectException dcE) {
producer.close();
throw dcE;
} catch (KafkaException e) {
// Re-process all the consumed record
producer.abortTransaction();
}
}
}
} finally {
producer.close();
consumer.close();
}
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionKafkaProducer
(Map<String, Object> configs) A producer is instantiated by providing a set of key-value pairs as configuration.KafkaProducer
(Map<String, Object> configs, Connection conn) A producer is instantiated by providing a set of key-value pairs as configuration.KafkaProducer
(Map<String, Object> configs, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer) A producer is instantiated by providing a set of key-value pairs as configuration, a key and a valueSerializer
.KafkaProducer
(Map<String, Object> configs, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer, Connection conn) A producer is instantiated by providing a set of key-value pairs as configuration, a key and a valueSerializer
and Connection to Oracle Database, versioned 23c and above.KafkaProducer
(Properties properties) A producer is instantiated by providing a set of key-value pairs as configuration.KafkaProducer
(Properties properties, Connection conn) A producer is instantiated by providing a set of key-value pairs as configuration.KafkaProducer
(Properties properties, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer) A producer is instantiated by providing a set of key-value pairs as configuration, a key and a valueSerializer
.KafkaProducer
(Properties properties, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer, Connection conn) A producer is instantiated by providing a set of key-value pairs as configuration, a key and a valueSerializer
and Connection to Oracle Database. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Aborts the ongoing transaction.void
Should be called before the start of each new transaction.org.apache.kafka.common.Uuid
clientInstanceId
(Duration timeout) void
close()
Close this producer.void
This method waits up totimeout
for the producer to complete the sending of all incomplete requests.void
Commits the ongoing transaction.void
flush()
Invoking this method makes all buffered records immediately available to send (even iflinger.ms
is greater than 0) and blocks on the completion of the requests associated with these records.This method returns the database connection used by this KafkaProducer.void
Needs to be called before any other methods when the transactional.id is set in the configuration.Map<org.apache.kafka.common.MetricName,
? extends org.apache.kafka.common.Metric> metrics()
Get the full set of internal metrics maintained by the producer.List<org.apache.kafka.common.PartitionInfo>
partitionsFor
(String topic) Get the partition metadata for the given topic.Future<org.apache.kafka.clients.producer.RecordMetadata>
Asynchronously send a record to a topic.Future<org.apache.kafka.clients.producer.RecordMetadata>
send
(org.apache.kafka.clients.producer.ProducerRecord<K, V> record, org.apache.kafka.clients.producer.Callback callback) Asynchronously send a record to a topic and invoke the provided callback when the send has been acknowledged.void
sendOffsetsToTransaction
(Map<org.apache.kafka.common.TopicPartition, org.apache.kafka.clients.consumer.OffsetAndMetadata> offsets, String consumerGroupId) This method is not supported for this release of OKafka.void
sendOffsetsToTransaction
(Map<org.apache.kafka.common.TopicPartition, org.apache.kafka.clients.consumer.OffsetAndMetadata> offsets, org.apache.kafka.clients.consumer.ConsumerGroupMetadata groupMetadata) This method is not supported for this release of OKafka.
-
Field Details
-
NETWORK_THREAD_PREFIX
- See Also:
-
PRODUCER_METRIC_GROUP_NAME
- See Also:
-
-
Constructor Details
-
KafkaProducer
A producer is instantiated by providing a set of key-value pairs as configuration. Valid configuration strings are documented here. Values can be either strings or Objects of the appropriate type (for example a numeric configuration would accept either the string "42" or the integer 42).Note: after creating a
KafkaProducer
you must alwaysclose()
it to avoid resource leaks.- Parameters:
configs
- The producer configs
-
KafkaProducer
A producer is instantiated by providing a set of key-value pairs as configuration. And a valid Connection object to Oracle Database. Valid configuration strings are documented here. Values can be either strings or Objects of the appropriate type (for example a numeric configuration would accept either the string "42" or the integer 42).Note: after creating a
KafkaProducer
you must alwaysclose()
it to avoid resource leaks.- Parameters:
configs
- The producer configsconn
- Connection to Oracle Database
-
KafkaProducer
public KafkaProducer(Map<String, Object> configs, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer) A producer is instantiated by providing a set of key-value pairs as configuration, a key and a valueSerializer
. Valid configuration strings are documented here. Values can be either strings or Objects of the appropriate type (for example a numeric configuration would accept either the string "42" or the integer 42).Note: after creating a
KafkaProducer
you must alwaysclose()
it to avoid resource leaks.- Parameters:
configs
- The producer configskeySerializer
- The serializer for key that implementsSerializer
. The configure() method won't be called in the producer when the serializer is passed in directly.valueSerializer
- The serializer for value that implementsSerializer
. The configure() method won't be called in the producer when the serializer is passed in directly.
-
KafkaProducer
public KafkaProducer(Map<String, Object> configs, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer, Connection conn) A producer is instantiated by providing a set of key-value pairs as configuration, a key and a valueSerializer
and Connection to Oracle Database, versioned 23c and above. Valid configuration strings are documented here. Values can be either strings or Objects of the appropriate type (for example a numeric configuration would accept either the string "42" or the integer 42).Note: after creating a
KafkaProducer
you must alwaysclose()
it to avoid resource leaks.- Parameters:
configs
- The producer configskeySerializer
- The serializer for key that implementsSerializer
. The configure() method won't be called in the producer when the serializer is passed in directly.valueSerializer
- The serializer for value that implementsSerializer
. The configure() method won't be called in the producer when the serializer is passed in directly.conn
- Connection to Oracle Database
-
KafkaProducer
A producer is instantiated by providing a set of key-value pairs as configuration. Valid configuration strings are documented here.Note: after creating a
KafkaProducer
you must alwaysclose()
it to avoid resource leaks.- Parameters:
properties
- The producer configs
-
KafkaProducer
A producer is instantiated by providing a set of key-value pairs as configuration. Valid configuration strings are documented here.Note: after creating a
KafkaProducer
you must alwaysclose()
it to avoid resource leaks.- Parameters:
properties
- The producer configsconn
- Connection to Oracle Database
-
KafkaProducer
public KafkaProducer(Properties properties, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer) A producer is instantiated by providing a set of key-value pairs as configuration, a key and a valueSerializer
. Valid configuration strings are documented here.Note: after creating a
KafkaProducer
you must alwaysclose()
it to avoid resource leaks.- Parameters:
properties
- The producer configskeySerializer
- The serializer for key that implementsSerializer
. The configure() method won't be called in the producer when the serializer is passed in directly.valueSerializer
- The serializer for value that implementsSerializer
. The configure() method won't be called in the producer when the serializer is passed in directly.
-
KafkaProducer
public KafkaProducer(Properties properties, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer, Connection conn) A producer is instantiated by providing a set of key-value pairs as configuration, a key and a valueSerializer
and Connection to Oracle Database. Valid configuration strings are documented here.Note: after creating a
KafkaProducer
you must alwaysclose()
it to avoid resource leaks.- Parameters:
properties
- The producer configskeySerializer
- The serializer for key that implementsSerializer
. The configure() method won't be called in the producer when the serializer is passed in directly.valueSerializer
- The serializer for value that implementsSerializer
. The configure() method won't be called in the producer when the serializer is passed in directly.conn
- Connection to Oracle Database
-
-
Method Details
-
initTransactions
public void initTransactions()Needs to be called before any other methods when the transactional.id is set in the configuration. This method does the following: 1. Ensures any transactions initiated by previous instances of the producer with the same transactional.id are completed. If the previous instance had failed with a transaction in progress, it will be aborted. If the last transaction had begun completion, but not yet finished, this method awaits its completion. 2. Gets the internal producer id and epoch, used in all future transactional messages issued by the producer. Note that this method will raiseTimeoutException
if the transactional state cannot be initialized before expiration ofmax.block.ms
. Additionally, it will raiseInterruptException
if interrupted. It is safe to retry in either case, but once the transactional state has been successfully initialized, this method should no longer be used.- Specified by:
initTransactions
in interfaceorg.apache.kafka.clients.producer.Producer<K,
V> - Throws:
IllegalStateException
- if no transactional.id has been configuredorg.apache.kafka.common.errors.UnsupportedVersionException
- fatal error indicating the broker does not support transactions (i.e. if its version is lower than 0.11.0.0)org.apache.kafka.common.errors.AuthorizationException
- fatal error indicating that the configured transactional.id is not authorized. See the exception for more detailsorg.apache.kafka.common.KafkaException
- if the producer has encountered a previous fatal error or for any other unexpected errororg.apache.kafka.common.errors.TimeoutException
- if the time taken for initialize the transaction has surpassedmax.block.ms
.org.apache.kafka.common.errors.InterruptException
- if the thread is interrupted while blocked
-
beginTransaction
public void beginTransaction() throws org.apache.kafka.common.errors.ProducerFencedExceptionShould be called before the start of each new transaction. Note that prior to the first invocation of this method, you must invokeinitTransactions()
exactly one time.- Specified by:
beginTransaction
in interfaceorg.apache.kafka.clients.producer.Producer<K,
V> - Throws:
IllegalStateException
- if no transactional.id has been configured or ifinitTransactions()
has not yet been invokedorg.apache.kafka.common.errors.ProducerFencedException
- if another producer with the same transactional.id is activeorg.apache.kafka.common.errors.InvalidProducerEpochException
- if the producer has attempted to produce with an old epoch to the partition leader. See the exception for more detailsorg.apache.kafka.common.errors.UnsupportedVersionException
- fatal error indicating the broker does not support transactions (i.e. if its version is lower than 0.11.0.0)org.apache.kafka.common.errors.AuthorizationException
- fatal error indicating that the configured transactional.id is not authorized. See the exception for more detailsorg.apache.kafka.common.KafkaException
- if the producer has encountered a previous fatal error or for any other unexpected error
-
sendOffsetsToTransaction
public void sendOffsetsToTransaction(Map<org.apache.kafka.common.TopicPartition, org.apache.kafka.clients.consumer.OffsetAndMetadata> offsets, String consumerGroupId) throws org.apache.kafka.common.errors.ProducerFencedExceptionThis method is not supported for this release of OKafka. It will throw FeatureNotSupportedException if invoked. Sends a list of specified offsets to the consumer group coordinator, and also marks those offsets as part of the current transaction. These offsets will be considered committed only if the transaction is committed successfully. The committed offset should be the next message your application will consume, i.e. lastProcessedMessageOffset + 1.This method should be used when you need to batch consumed and produced messages together, typically in a consume-transform-produce pattern. Thus, the specified
consumerGroupId
should be the same as config parametergroup.id
of the usedconsumer
. Note, that the consumer should haveenable.auto.commit=false
and should also not commit offsets manually (viasync
orasync
commits).- Specified by:
sendOffsetsToTransaction
in interfaceorg.apache.kafka.clients.producer.Producer<K,
V> - Throws:
IllegalStateException
- if no transactional.id has been configured, no transaction has been startedorg.apache.kafka.common.errors.ProducerFencedException
- fatal error indicating another producer with the same transactional.id is activeorg.apache.kafka.common.errors.UnsupportedVersionException
- fatal error indicating the broker does not support transactions (i.e. if its version is lower than 0.11.0.0)org.apache.kafka.common.errors.UnsupportedForMessageFormatException
- fatal error indicating the message format used for the offsets topic on the broker does not support transactionsorg.apache.kafka.common.errors.AuthorizationException
- fatal error indicating that the configured transactional.id is not authorized, or the consumer group id is not authorized.org.apache.kafka.common.errors.InvalidProducerEpochException
- if the producer has attempted to produce with an old epoch to the partition leader. See the exception for more detailsorg.apache.kafka.common.KafkaException
- if the producer has encountered a previous fatal or abortable error, or for any other unexpected error
-
sendOffsetsToTransaction
public void sendOffsetsToTransaction(Map<org.apache.kafka.common.TopicPartition, org.apache.kafka.clients.consumer.OffsetAndMetadata> offsets, org.apache.kafka.clients.consumer.ConsumerGroupMetadata groupMetadata) throws org.apache.kafka.common.errors.ProducerFencedExceptionThis method is not supported for this release of OKafka. It will throw FeatureNotSupportedException if invoked. Sends a list of specified offsets to the consumer group coordinator, and also marks those offsets as part of the current transaction. These offsets will be considered committed only if the transaction is committed successfully. The committed offset should be the next message your application will consume, i.e. lastProcessedMessageOffset + 1.This method should be used when you need to batch consumed and produced messages together, typically in a consume-transform-produce pattern. Thus, the specified
groupMetadata
should be extracted from the usedconsumer
viaKafkaConsumer.groupMetadata()
to leverage consumer group metadata for stronger fencing thansendOffsetsToTransaction(Map, String)
which only sends with consumer group id.Note, that the consumer should have
enable.auto.commit=false
and should also not commit offsets manually (viasync
orasync
commits). This method will raiseTimeoutException
if the producer cannot send offsets before expiration ofmax.block.ms
. Additionally, it will raiseInterruptException
if interrupted.- Specified by:
sendOffsetsToTransaction
in interfaceorg.apache.kafka.clients.producer.Producer<K,
V> - Throws:
IllegalStateException
- if no transactional.id has been configured or no transaction has been started.org.apache.kafka.common.errors.ProducerFencedException
- fatal error indicating another producer with the same transactional.id is activeorg.apache.kafka.common.errors.UnsupportedVersionException
- fatal error indicating the broker does not support transactions (i.e. if its version is lower than 0.11.0.0) or the broker doesn't support latest version of transactional API with consumer group metadata (i.e. if its version is lower than 2.5.0).org.apache.kafka.common.errors.UnsupportedForMessageFormatException
- fatal error indicating the message format used for the offsets topic on the broker does not support transactionsorg.apache.kafka.common.errors.AuthorizationException
- fatal error indicating that the configured transactional.id is not authorized, or the consumer group id is not authorized.org.apache.kafka.clients.consumer.CommitFailedException
- if the commit failed and cannot be retried (e.g. if the consumer has been kicked out of the group). Users should handle this by aborting the transaction.org.apache.kafka.common.errors.FencedInstanceIdException
- if this producer instance gets fenced by broker due to a mis-configured consumer instance id within group metadata.org.apache.kafka.common.errors.InvalidProducerEpochException
- if the producer has attempted to produce with an old epoch to the partition leader. See the exception for more detailsorg.apache.kafka.common.KafkaException
- if the producer has encountered a previous fatal or abortable error, or for any other unexpected errororg.apache.kafka.common.errors.TimeoutException
- if the time taken for sending offsets has surpassed max.block.ms.org.apache.kafka.common.errors.InterruptException
- if the thread is interrupted while blocked
-
commitTransaction
public void commitTransaction() throws org.apache.kafka.common.errors.DisconnectException, org.apache.kafka.common.KafkaExceptionCommits the ongoing transaction. This method will flush any unsent records before actually committing the transaction. Further, if any of thesend(ProducerRecord)
calls which were part of the transaction hit irrecoverable errors, this method will throw the last received exception immediately and the transaction will not be committed. So allsend(ProducerRecord)
calls in a transaction must succeed in order for this method to succeed. Note that this method will raiseTimeoutException
if the transaction cannot be committed before expiration ofmax.block.ms
. AdditionallyInterruptException
if interrupted. It is safe to retry in either case, but it is not possible to attempt a different operation (such as abortTransaction) since the commit may already be in the progress of completing. If not retrying, the only option is to close the producer.- Specified by:
commitTransaction
in interfaceorg.apache.kafka.clients.producer.Producer<K,
V> - Throws:
IllegalStateException
- if no transactional.id has been configured or no transaction has been startedorg.apache.kafka.common.errors.ProducerFencedException
- fatal error indicating another producer with the same transactional.id is activeorg.apache.kafka.common.errors.UnsupportedVersionException
- fatal error indicating the broker does not support transactions (i.e. if its version is lower than 0.11.0.0)org.apache.kafka.common.errors.AuthorizationException
- fatal error indicating that the configured transactional.id is not authorized. See the exception for more detailsorg.apache.kafka.common.errors.InvalidProducerEpochException
- if the producer has attempted to produce with an old epoch to the partition leader. See the exception for more detailsorg.apache.kafka.common.KafkaException
- if the producer has encountered a previous fatal or abortable error, or for any other unexpected errororg.apache.kafka.common.errors.TimeoutException
- if the time taken for committing the transaction has surpassedmax.block.ms
.org.apache.kafka.common.errors.InterruptException
- if the thread is interrupted while blockedorg.apache.kafka.common.errors.DisconnectException
-
abortTransaction
public void abortTransaction() throws org.apache.kafka.common.errors.ProducerFencedExceptionAborts the ongoing transaction. Any unflushed produce messages will be aborted when this call is made. This call will throw an exception immediately if any priorsend(ProducerRecord)
calls failed with aProducerFencedException
or an instance ofAuthorizationException
. Note that this method will raiseTimeoutException
if the transaction cannot be aborted before expiration ofmax.block.ms
. Additionally, it will raiseInterruptException
if interrupted. It is safe to retry in either case, but it is not possible to attempt a different operation (such as commitTransaction) since the abort may already be in the progress of completing. If not retrying, the only option is to close the producer.- Specified by:
abortTransaction
in interfaceorg.apache.kafka.clients.producer.Producer<K,
V> - Throws:
IllegalStateException
- if no transactional.id has been configured or no transaction has been startedorg.apache.kafka.common.errors.ProducerFencedException
- fatal error indicating another producer with the same transactional.id is activeorg.apache.kafka.common.errors.InvalidProducerEpochException
- if the producer has attempted to produce with an old epoch to the partition leader. See the exception for more detailsorg.apache.kafka.common.errors.UnsupportedVersionException
- fatal error indicating the broker does not support transactions (i.e. if its version is lower than 0.11.0.0)org.apache.kafka.common.errors.AuthorizationException
- fatal error indicating that the configured transactional.id is not authorized. See the exception for more detailsorg.apache.kafka.common.KafkaException
- if the producer has encountered a previous fatal error or for any other unexpected errororg.apache.kafka.common.errors.TimeoutException
- if the time taken for aborting the transaction has surpassedmax.block.ms
.org.apache.kafka.common.errors.InterruptException
- if the thread is interrupted while blocked
-
send
public Future<org.apache.kafka.clients.producer.RecordMetadata> send(org.apache.kafka.clients.producer.ProducerRecord<K, V> record) Asynchronously send a record to a topic. Equivalent tosend(record, null)
. Seesend(ProducerRecord, Callback)
for details. -
send
public Future<org.apache.kafka.clients.producer.RecordMetadata> send(org.apache.kafka.clients.producer.ProducerRecord<K, V> record, org.apache.kafka.clients.producer.Callback callback) Asynchronously send a record to a topic and invoke the provided callback when the send has been acknowledged.The send is asynchronous and this method will return immediately once the record has been stored in the buffer of records waiting to be sent. This allows sending many records in parallel without blocking to wait for the response after each one.
The result of the send is a
RecordMetadata
specifying the partition the record was sent to, the offset it was assigned and the timestamp of the record. IfCreateTime
is used by the topic, the timestamp will be the user provided timestamp or the record send time if the user did not specify a timestamp for the record. IfLogAppendTime
is used for the topic, the timestamp will be the Kafka broker local time when the message is appended.Since the send call is asynchronous it returns a
Future
for theRecordMetadata
that will be assigned to this record. Invokingget()
on this future will block until the associated request completes and then return the metadata for the record or throw any exception that occurred while sending the record.If you want to simulate a simple blocking call you can call the
get()
method immediately:byte[] key = "key".getBytes(); byte[] value = "value".getBytes(); ProducerRecord<byte[],byte[]> record = new ProducerRecord<byte[],byte[]>("my-topic", key, value) producer.send(record).get();
Fully non-blocking usage can make use of the
Callback
parameter to provide a callback that will be invoked when the request is complete.ProducerRecord<byte[], byte[]> record = new ProducerRecord<byte[], byte[]>("the-topic", key, value); producer.send(myRecord, new Callback() { public void onCompletion(RecordMetadata metadata, Exception e) { if (e != null) { e.printStackTrace(); } else { System.out.println("The offset of the record we just sent is: " + metadata.offset()); } } });
callback1
is guaranteed to execute beforecallback2
:producer.send(new ProducerRecord<byte[], byte[]>(topic, partition, key1, value1), callback1); producer.send(new ProducerRecord<byte[], byte[]>(topic, partition, key2, value2), callback2);
When used as part of a transaction, it is not necessary to define a callback or check the result of the future in order to detect errors from
send
. If any of the send calls failed with an irrecoverable error, the finalcommitTransaction()
call will fail and throw the exception from the last failed send. When this happens, your application should callabortTransaction()
to reset the state and continue to send data.Some transactional send errors cannot be resolved with a call to
abortTransaction()
. In particular, if a transactional send finishes with aProducerFencedException
, aOutOfOrderSequenceException
, aUnsupportedVersionException
, or anAuthorizationException
, then the only option left is to callclose()
. Fatal errors cause the producer to enter a defunct state in which future API calls will continue to raise the same underyling error wrapped in a newKafkaException
.It is a similar picture when idempotence is enabled, but no
transactional.id
has been configured. In this case,UnsupportedVersionException
andAuthorizationException
are considered fatal errors. However,ProducerFencedException
does not need to be handled. Additionally, it is possible to continue sending after receiving anOutOfOrderSequenceException
, but doing so can result in out of order delivery of pending messages. To ensure proper ordering, you should close the producer and create a new instance.If the message format of the destination topic is not upgraded to 0.11.0.0, idempotent and transactional produce requests will fail with an
UnsupportedForMessageFormatException
error. If this is encountered during a transaction, it is possible to abort and continue. But note that future sends to the same topic will continue receiving the same exception until the topic is upgraded.Note that callbacks will generally execute in the I/O thread of the producer and so should be reasonably fast or they will delay the sending of messages from other threads. If you want to execute blocking or computationally expensive callbacks it is recommended to use your own
Executor
in the callback body to parallelize processing.- Specified by:
send
in interfaceorg.apache.kafka.clients.producer.Producer<K,
V> - Parameters:
record
- The record to sendcallback
- A user-supplied callback to execute when the record has been acknowledged by the server (null indicates no callback)- Throws:
org.apache.kafka.common.errors.AuthenticationException
- if authentication fails. See the exception for more detailsorg.apache.kafka.common.errors.AuthorizationException
- fatal error indicating that the producer is not allowed to writeIllegalStateException
- if a transactional.id has been configured and no transaction has been started, or when send is invoked after producer has been closed.org.apache.kafka.common.errors.InterruptException
- If the thread is interrupted while blockedorg.apache.kafka.common.errors.SerializationException
- If the key or value are not valid objects given the configured serializersorg.apache.kafka.common.KafkaException
- If a Kafka related error occurs that does not belong to the public API exceptions.
-
flush
public void flush()Invoking this method makes all buffered records immediately available to send (even iflinger.ms
is greater than 0) and blocks on the completion of the requests associated with these records. The post-condition offlush()
is that any previously sent record will have completed (e.g.Future.isDone() == true
). A request is considered completed when it is successfully acknowledged according to theacks
configuration you have specified or else it results in an error.Other threads can continue sending records while one thread is blocked waiting for a flush call to complete, however no guarantee is made about the completion of records sent after the flush call begins.
This method can be useful when consuming from some input system and producing into Kafka. The
flush()
call gives a convenient way to ensure all previously sent messages have actually completed.This example shows how to consume from one Kafka topic and produce to another Kafka topic:
for(ConsumerRecord<String, String> record: consumer.poll(100)) producer.send(new ProducerRecord("my-topic", record.key(), record.value()); producer.flush(); consumer.commitSync();
retries=<large_number>
in our config.Applications don't need to call this method for transactional producers, since the
commitTransaction()
will flush all buffered records before performing the commit. This ensures that all thesend(ProducerRecord)
calls made since the previousbeginTransaction()
are completed before the commit. -
partitionsFor
Get the partition metadata for the given topic. This can be used for custom partitioning.- Specified by:
partitionsFor
in interfaceorg.apache.kafka.clients.producer.Producer<K,
V> - Throws:
org.apache.kafka.common.errors.AuthenticationException
- if authentication fails. See the exception for more detailsorg.apache.kafka.common.errors.AuthorizationException
- if not authorized to the specified topic. See the exception for more detailsorg.apache.kafka.common.errors.InterruptException
- if the thread is interrupted while blockedorg.apache.kafka.common.errors.TimeoutException
- if metadata could not be refreshed withinmax.block.ms
org.apache.kafka.common.KafkaException
- for all Kafka-related exceptions, including the case where this method is called after producer close
-
metrics
Get the full set of internal metrics maintained by the producer. -
close
public void close()Close this producer. This method blocks until all previously sent requests complete. This method is equivalent toclose(Long.MAX_VALUE, TimeUnit.MILLISECONDS)
.If close() is called from
Callback
, a warning message will be logged and close(0, TimeUnit.MILLISECONDS) will be called instead. We do this because the sender thread would otherwise try to join itself and block forever.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceorg.apache.kafka.clients.producer.Producer<K,
V> - Throws:
org.apache.kafka.common.errors.InterruptException
- If the thread is interrupted while blocked.org.apache.kafka.common.KafkaException
- If a unexpected error occurs while trying to close the client, this error should be treated as fatal and indicate the client is no longer functionable.
-
close
This method waits up totimeout
for the producer to complete the sending of all incomplete requests.If the producer is unable to complete all requests before the timeout expires, this method will fail any unsent and unacknowledged records immediately. It will also abort the ongoing transaction if it's not already completing.
If invoked from within a
Callback
this method will not block and will be equivalent toclose(Duration.ofMillis(0))
. This is done since no further sending will happen while blocking the I/O thread of the producer.- Specified by:
close
in interfaceorg.apache.kafka.clients.producer.Producer<K,
V> - Parameters:
timeout
- The maximum time to wait for producer to complete any pending requests. The value should be non-negative. Specifying a timeout of zero means do not wait for pending send requests to complete.- Throws:
org.apache.kafka.common.errors.InterruptException
- If the thread is interrupted while blocked.org.apache.kafka.common.KafkaException
- If a unexpected error occurs while trying to close the client, this error should be treated as fatal and indicate the client is no longer functionable.IllegalArgumentException
- If thetimeout
is negative.
-
getDBConnection
This method returns the database connection used by this KafkaProducer.- Throws:
org.apache.kafka.common.KafkaException
- iforacle.transactional.producer
property is not set to true or KafkaProducer fails to create a database connection.
-
clientInstanceId
-