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
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
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.