kickinchicken
kickinchicken

Reputation: 1625

Camel Kafka .NET Connector

I'm new to Camel and Kafka. I have been reading some documentation on Camel, and have come across this repository with links to number of connectors. These seem to be connectors to primary sources of storage. What if I need to connect from .NET, pull the data and process it before committing it to my database? I feel like I'm missing the point somehow as I don't see any kinds of C# connectors.

Upvotes: 2

Views: 1227

Answers (1)

Valdar
Valdar

Reputation: 86

Camel kafka connector project aims to provide a set of kafka connectors ready to use by simply configuring them. These connectors are based on the corresponding Camel components, that in turn focus on talking with an "external" system, protocol or SaaS.

So if I understood you usecase you probably need a kafka client in C# (like https://github.com/confluentinc/confluent-kafka-dotnet) so in your application logic you can connect to kafka grab events, apply what logic is needed and place them in the application database.

Upvotes: 2

Related Questions