public SimpleProducer(String broker, String topic, String clientId)
{
Properties props = new Properties();
- props.put("bootstrap.servers", broker);
- props.put("client.id", clientId); // Nur zur Wiedererkennung
- props.put("key.serializer", StringSerializer.class.getName());
- props.put("value.serializer", StringSerializer.class.getName());
+ // TODO: Konfiguration für den Producer zusammenstellen
this.id = clientId;
this.topic = topic;
{
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()
- );
- }
- });
+ ProducerRecord<String, String> record = null;
+ // TODO:
+ //
+ // 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(