Frends.AzureEventHub.UpdateCheckpoint / 1.4.0
Summary
Moves the stored read position for a consumer group, forward or back by a number of events, either across all partitions or only the ones you name.
Typical use — replaying a stretch of events after a failed run, or skipping past a message that cannot be processed, without touching the receive Process itself
Essential parameters.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| EventHubName | String |
– | myeventhub |
The name of the Azure Event Hub. |
| ConsumerGroup | String |
– | $Default |
The consumer group whose checkpoint should be updated. |
| PartitionIds | String[] |
– | [ "0", "1", "2" ] |
List of partition IDs to update. |
| RollbackEvents | Int32 |
– | 5 |
Number of events to roll back the checkpoint by (can be 0). |