Integrating Azure functions to confluent kafka

Prakash 1 Reputation point
2021-10-11T11:55:13.073+00:00

I'll try to send some messages from Azure functions(using python code) to Confluent Kafka. How can I achieve this without the premium plan.

Source - Azure functions, Destination - Confluent kafka (messages could be any form of data)

Already referred this https://github.com/Azure/azure-functions-kafka-extension which does not help for basic plan.

Thanks

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,911 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. MayankBargali-MSFT 70,936 Reputation points Moderator
    2021-10-11T12:10:29.1+00:00

    @Prakash Unfortunately only Premium Plan are currently supported as mentioned in github document and Announcement page.

    DISCLAIMER: This library is supported in the Premium Plan along with support for scaling as Go-Live - supported in Production with a SLA. It is also fully supported when using Azure Functions on Kubernetes where scaling will be handed by KEDA - scaling based on Kafka queue length. It is currently not supported on the Consumption plan (there will be no scale from zero) - this is something the Azure Functions team is still working on.

    If you want to trigger function when there is a new message and consume the message, you may consider to send messages to a supported source (e.g. Azure Event Hubs) and configure Functions to listen to that source. Please refer to this document.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.