Domande taggate «kafka-consumer-api»


2
La chiave è richiesta come parte dell'invio di messaggi a Kafka?
KeyedMessage<String, byte[]> keyedMessage = new KeyedMessage<String, byte[]>(request.getRequestTopicName(), SerializationUtils.serialize(message)); producer.send(keyedMessage); Attualmente sto inviando messaggi senza alcuna chiave come parte di messaggi con chiave, funzionerà ancora delete.retention.ms? Devo inviare una chiave come parte del messaggio? È utile inserire la chiave come parte del messaggio?

2
Consuma di nuovo lo stesso messaggio se l'elaborazione del messaggio non riesce
Sto usando Confluent.Kafka. NET versione client 1.3.0. Sto seguendo i documenti : var consumerConfig = new ConsumerConfig { BootstrapServers = "server1, server2", AutoOffsetReset = AutoOffsetReset.Earliest, EnableAutoCommit = true, EnableAutoOffsetStore = false, GroupId = this.groupId, SecurityProtocol = SecurityProtocol.SaslPlaintext, SaslMechanism = SaslMechanism.Plain, SaslUsername = this.kafkaUsername, SaslPassword = this.kafkaPassword, }; using (var consumer …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.