Open
Description
I was unable to find documentation how to configure the librdkafka settings in JS with the v4 runtime.
- How can we configure properties such as
AutoOffsetReset
/auto.offset.reset
? - Is there a types package that we can leverage to type the options since there is no
kafka
specific trigger and we must use thegeneric
trigger?
Thank you in advance for your insight
Investigative information
Please provide the following:
- Timestamp: N/A
- Function App name: N/A
- Function name(s) (as appropriate): N/A
- Invocation ID: N/A
- Region: N/A
Repro steps
Provide the steps required to reproduce the problem: N/A

Expected behavior
Provide a description of the expected behavior.
N/A
Actual behavior
Provide a description of the actual behavior observed.
Known workarounds
Provide a description of any known workarounds.
N/A
Related information
Provide any related information
- Programming language used : Typescript
- Links to source
- Bindings used: Kafka
- Runtime: "@azure/functions": "^4.0.1",
host.json
:
{
"version": "2.0",
"logging": {
"applicationInsights": {
"samplingSettings": {
"isEnabled": true,
"excludedTypes": "Request"
}
}
},
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[4.*, 5.0.0)"
}
}