Skip to content

Commit

Permalink
docs(eventhub): provide dapr parameter for eventhub checkpoint strate…
Browse files Browse the repository at this point in the history
…gy (#996)
  • Loading branch information
christle authored Dec 6, 2022
1 parent bea2cf8 commit f7e563c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion content/docs/2.9/scalers/azure-event-hub.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ triggers:
- `checkpointStrategy` - configure the checkpoint behaviour of different Event Hub SDKs. (Values: `azureFunction`, `blobMetadata`, `goSdk`, default: `""`, Optional)
- `azureFunction` - Suitable for Azure Functions & Azure WebJobs SDK. This is the default setting, when `blobcontainer` is not specified.
- `blobMetadata` - For all implementations that store checkpoint information on blob metadata such as current C#, Python, Java and JavaScript Event Hub SDKs.
- `goSdk` - For all implementations using the [Golang SDK](https://github.com/Azure/azure-event-hubs-go)'s checkpointing, for example Dapr.
- `goSdk` - For all implementations using the [Golang SDK](https://github.com/Azure/azure-event-hubs-go)'s checkpointing.
- `dapr` - Suitable for Dapr pubsub and bindings, depending on the used Dapr version:
- pubsub components: >= Dapr 1.6 (older versions need the GoSdk checkpointer)
- binding components: >= Dapr 1.9 (older versions need the GoSdk checkpointer)
- When no checkpoint strategy is specified, the Event Hub scaler will use backwards compatibility and able to scale older implementations of C#, Python or Java Event Hub SDKs. (see "Legacy checkpointing"). If this behaviour should be used, `blobContainer` is also required.
- `cloud` - Name of the cloud environment that the Event Hub belongs to. (Values: `AzurePublicCloud`, `AzureUSGovernmentCloud`, `AzureChinaCloud`, `AzureGermanCloud`, `Private`, Default: `AzurePublicCloud`, Optional)
- `endpointSuffix` - Service Bus endpoint suffix of the cloud environment. (Required when `cloud` is set to `Private`, e.g. `servicebus.cloudapi.de` for `AzureGermanCloud`).
Expand Down

0 comments on commit f7e563c

Please sign in to comment.