<build>
<plugins>
- <plugin>
- <groupId>pl.project13.maven</groupId>
- <artifactId>git-commit-id-plugin</artifactId>
- </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
{
final long time = System.currentTimeMillis();
- final ProducerRecord<String, String> record = new ProducerRecord<>(
- topic, // Topic
- key, // Key
- value // Value
- );
-
- producer.send(record, (metadata, e) ->
- {
- long now = System.currentTimeMillis();
- if (e == null)
- {
- // HANDLE SUCCESS
- produced++;
- log.debug(
- "{} - Sent key={} message={} partition={}/{} timestamp={} latency={}ms",
- id,
- record.key(),
- record.value(),
- metadata.partition(),
- metadata.offset(),
- metadata.timestamp(),
- now - time
- );
- }
- else
- {
- // HANDLE ERROR
- log.error(
- "{} - ERROR key={} timestamp={} latency={}ms: {}",
- id,
- record.key(),
- metadata == null ? -1 : metadata.timestamp(),
- now - time,
- e.toString()
- );
- }
- });
+ // Aufgabe:
+ // 1. ProducerRecord<String, String> erzeugen
+ // 2. Record mit producer.send(...) verschicken
+ // Dabei beachten:
+ // * Callback implementieren und Erfolg/Fehler logge
+ // * Tipp: Aktuellen Zeitstempel auch im Callback erzeugen und
+ // Millisekunden berechnen, die bis zum Senden verstrichen sind:
+ // long now = System.currentTimeMillis(); // Für: now - time
long now = System.currentTimeMillis();
log.trace(