Apache Pulsar implementation in a distributed system

47 Views Asked by At

I'm new to Apache Pulsar technology and I want to implement the Apache Pulsar in distributed system. In which one machine should have Pulsar Producer which produces the messages to the topic and the other machine should have Pulsar Consumer to consume those messages from the same topic.

Is there any way to implement the same using C# language.

Kindly help me with the guideline to implement it!

1

There are 1 best solutions below

0
On

There is a client library for C# linked in the official docs for Apache Pulsar: https://pulsar.apache.org/docs/next/client-libraries-dotnet/

You'll find examples for producers and consumers there.