How to trigger azure function when there is a message in Kafka topic

Viewed 5594

I am new to azure function and Kafka.

I would like to know whether it is possible to trigger azure function when there is message in the Kafka topic?

Thanks

2 Answers

Azure Functions need a trigger defined in order to run. There is a limited set of supported trigger types, and Kafka is not one of them.

In order to consume messages from Kafka, you would first need to send them to a supported source (e.g. Azure Event Hubs) and configure Functions to listen to that new source.

Related