Frends.AzureEventHub.UpdateCheckpoint / 2.0.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. |
| Targets | PartitionTarget[] |
– | [ { "PartitionId": "0", "Mode": "AbsoluteSequenceNumber", "TargetSequenceNumber": 1500 } ] |
Per-partition checkpoint targets. Each target selects a partition and a positioning mode (relative rollback, absolute sequence number, or absolute enqueued time). At least one target must be provided. The target position is validated automatically against the partition's available sequence range, so no manual lookup of the current checkpoint or sequence numbers is required. |