I'm consuming Kafka events from Azure Event Hub.After consuming an event, I must call a rest API for each message.My web API take too much time because of the quantity of information I should treat(3 to 5 seconds).How I can call rest API after message consuming without breaking my consumer.What is the best architecture I should implement (rest API as a background services? Or any other solutions...)I'm using. Net confluent.Kafka.
↧