Add azure kafka function sample

- Add sample project with Azure KafkaTrigger and Output Kakfa Bindings
 - Add README docs

 Resolves #836
This commit is contained in:
Christian Tzolov
2022-10-17 19:17:16 +02:00
parent d627742772
commit 5aecb218e7
18 changed files with 1227 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{
"functionTimeout": "00:05:00",
"version": "2.0",
"extensions": {
"kafka": {
"maxBatchSize": 64,
"SubscriberIntervalInSeconds": 1,
"ExecutorChannelCapacity": 1,
"ChannelFullRetryIntervalInMs": 50
}
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[3.3.0, 4.0.0)"
}
}

View File

@@ -0,0 +1,12 @@
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"AzureWebJobsDashboard": "",
"FUNCTIONS_WORKER_RUNTIME": "java",
"BrokerList": "localhost:9092",
"ConfluentCloudUsername": "test",
"TriggerKafkaTopic": "trigger"
}
}