</parent>
<groupId>de.juplo.kafka</groupId>
- <artifactId>endless-producer</artifactId>
- <name>Endless Producer: a Simple Producer that endlessly writes numbers into a topic</name>
+ <artifactId>transactional-producer</artifactId>
+ <name>Endless Producer: a Simple Producer that endlessly writes transactionally grouped batches of numbers into a topic</name>
<version>1.0-SNAPSHOT</version>
<dependencies>
private final ExecutorService executor;
private final String id;
private final String topic;
+ private final int commitIntervalMs;
private final int throttleMs;
private final KafkaProducer<String, String> producer;
private boolean running = false;
private long i = 0;
private long produced = 0;
+ private long lastCommit;
public EndlessProducer(
ExecutorService executor,
String clientId,
String topic,
String acks,
+ int commitIntervalMs,
int throttleMs)
{
this.executor = executor;
this.id = clientId;
this.topic = topic;
+ this.commitIntervalMs = commitIntervalMs;
this.throttleMs = throttleMs;
Properties props = new Properties();
props.put("bootstrap.servers", bootstrapServer);
+ props.put("transactional.id", clientId);
props.put("client.id", clientId);
props.put("acks", acks);
props.put("key.serializer", StringSerializer.class.getName());
{
try
{
+ producer.initTransactions();
+
+ lastCommit = System.currentTimeMillis();
+ log.info("{} - Beginning transaction", id);
+ producer.beginTransaction();
+
for (; running; i++)
{
send(Long.toString(i%10), Long.toString(i));
log.warn("{} - Interrupted while throttling!", e);
}
}
+
+ long now = System.currentTimeMillis();
+ if (now - lastCommit >= commitIntervalMs)
+ {
+ log.info("{} - Commiting transaction", id);
+ producer.commitTransaction();
+ lastCommit = now;
+ log.info("{} - Beginning new transaction", id);
+ producer.beginTransaction();
+ }
}
+ log.info("{} - Commiting transaction", id);
+ producer.commitTransaction();
log.info("{} - Done", id);
}
catch (Exception e)
{
log.error("{} - Unexpected Exception:", id, e);
+ log.info("{} - Aborting transaction", id);
+ producer.abortTransaction();
}
finally
{