I am trying to run producer/consumer/ktable code in kafka and I keep getting this error message even though the topics are the same. It was working 2 days ago and I haven't touched my code since but then it suddenly stopped working and gave me this…
I have set up a Kafka server with 1000 partitions and 1 Topic. Basically, the data that gets stored in the cluster are status updates of objects. There are about 17000 of these objects and I produce maybe 5 status updates per second. Every object…
Hi I am working in Kafka and .Net. I am trying to produce message as below. I have created configuration for schema registry and producer as below. I am using certificates to connect to schema registry
var schemaRegistryConfig = new…
I have worked out a Kafka concept which is built up in such a way that I have a series of machines which have electric airpressure dustextraction and machinenStatus data. I have set up my Kafka concept in such a way that I create a topic for each…
I am trying to implement kafka producer and consumer with dot net running through docker but it is not producing messages to topic and giving this error....my broker is running and even I am able to implement the same in cmd but not through dot net…
Any hints on how to get a simple .Net Kafka client to connect to a broker?
I built Apache Kafka from the 3.4.0 download and followed the quick start successfully (topic created, events produced, events consumed).
Using Confluent.Kafka v2.1.1 I…
I created a C# Kafa client with Confluent.Kafka, and I have been trying to read the latest message only from two different topics, but it reads all messages, not just the latest one.
Here is my kafka client class, I'm not sure what I'm missing…
net core console application. I have below implementation of kafka consumer
var config = new ConsumerConfig
{
GroupId = groupId,
BootstrapServers = brokerList,
SaslMechanism = SaslMechanism.Plain,
SaslUsername = saslUsername,
…
We encountered an issue where a message we sent to the topic resulted in the following error from the Producer code:
Confluent.Kafka.ProduceException`2[System.String,com.capgroup.comet.compliance.ComplianceResponse]: Broker: Message size too…
im new with Kafka and im studing now, and i get some issue when im try consume a message. I have 2 example, when i create a user and when create a new Product. For User the message is consumed correclty in my debug, but for product dosen't work.
the…
using System;
using System.Collections.Generic;
using System.Net;
using System.Security.Authentication;
using System.Threading.Tasks;
using Confluent.Kafka;
class program
{
static async Task Main(string[] args)
{
try
{
…
I have following code for reading data from a Kafka topic. My target is periodically to read just the last newest message in the topic because I want use the data in a live chart. I have written the following code. But if I run the code I start…
I created a Kafka producer, using Confluent library, as a console app that ran as a scheduled task to submit some error records to Kafka broker periodically. Worked fine.
I have to convert this to run as a Windows Service and I am running into some…
I have come across one scenario where I want to maintain single kafka topic(message-processing-topic) with 'N' Partitions. Say for example 200 partitions.
I want to use the same topic for all the customers. Say I have 20 customers. I want to use 10…