azure-functions-kafka-extension
azure-functions-kafka-extension copied to clipboard
Kafka extension for Azure Functions
As mentioned in #175, attributes can't have nullable properties. It doesn't compile. It seems you haven't tested it. That PR used nullable backing fields and GetOrDefault to retrieve them. I...
Hi, when using the [out-of-process execution model](https://docs.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide) we are referencing the [Microsoft.Azure.Functions.Worker.Extensions.Kafka](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.Kafka) NuGet package, as outlined by this [sample project file](https://github.com/Azure/azure-functions-kafka-extension/blob/dev/samples/dotnet-isolated/confluent/Confluent.csproj). The problem is that all the Avro deserialization capabilities...
The SslCertificateLocation, SslKeyLocation and SslCaLocation attributes require the absolute path of certificate and keys respectively. This PR makes sure that the path is absolute and fixes https://github.com/Azure/azure-functions-kafka-extension/issues/321
Hello, I tried adding a key and header and writing the message to the Kafka output binding but it's not handled like a key and header, just as part of...
Please find below the summary of the issue - What we are observing is that function app deployment in AKS with KAFKA based KEDA scaler is repeatedly reading the old...
Adds a framework for testing the extension with azure functions across different languages with managed kafka offerings. Current PR adds test cases for - 1. Confluent 2. Eventhub and Languages...
Compared to the Confluent Kafka library, the azure functions version currently does not provide a EnableSslCertificateVerification setting. Of course, people should not exactly be encouraged to disable this security mechanism,...
When using outputing with a batch/list of events, The current throughput using the kafka output binding maxs out at around 500 events per minute. this because the implementation blocks on...