Domande taggate «apache-kafka»

Apache Kafka è una piattaforma di streaming distribuita progettata per archiviare ed elaborare flussi di dati ad alta velocità.


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 …


2
Kafka: ottenere continuamente FETCH_SESSION_ID_NOT_FOUND
Ricevo continuamente FETCH_SESSION_ID_NOT_FOUND. Non sono sicuro del perché stia accadendo. Qualcuno può farmi piacere qui qual è il problema e quale sarà l'impatto su consumatori e broker. Registro server Kafka: INFO [2019-10-18 12:09:00,709] [ReplicaFetcherThread-1-8][] org.apache.kafka.clients.FetchSessionHandler - [ReplicaFetcher replicaId=6, leaderId=8, fetcherId=1] Node 8 was unable to process the fetch request with …
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.