启动融合式dotnet使用者时,在调用订阅和后续轮询之后,无法使用C#中的TCP协议将客户端连接到远程aws Kafka服务器
错误:远程主机强行关闭了现有连接
生产者代码
public void Produce(字符串消息) {
var config =新字典
{ {“ bootstrap.servers”,“ localhost:9092”}
};
using (var producer = new Producer<Null, string>(config, null, new
StringSerializer(Encoding.UTF8)))
{
producer.ProduceAsync("ETH-USD-BUY", null,message).GetAwaiter().GetResult();
producer.Flush(10);
}
}