Skip to content

Commit a464456

Browse files
committed
H2s
1 parent 3099e4b commit a464456

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/event-hubs/event-processor-balance-partition-load.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You don't need to build your own solution to meet these requirements. The Azure
3535

3636
For most production scenarios, we recommend that you use the event processor client for reading and processing events. The processor client is intended to provide a robust experience for processing events across all partitions of an event hub in a performant and fault tolerant manner while providing a means to checkpoint its progress. Event processor clients can work cooperatively within the context of a consumer group for a given event hub. Clients will automatically manage distribution and balancing of work as instances become available or unavailable for the group.
3737

38-
## Partition ownership tracking
38+
## Partition ownership
3939

4040
An event processor instance typically owns and processes events from one or more partitions. Ownership of partitions is evenly distributed among all the active event processor instances associated with an event hub and consumer group combination.
4141

@@ -62,7 +62,7 @@ When you create an event processor, you specify functions that will process even
6262

6363
We recommend that you do things relatively fast. That is, do as little processing as possible. If you need to write to storage and do some routing, it's better to use two consumer groups and have two event processors.
6464

65-
## Checkpointing
65+
## Checkpoint
6666

6767
*Checkpointing* is a process by which an event processor marks or commits the position of the last successfully processed event within a partition. Marking a checkpoint is typically done within the function that processes the events and occurs on a per-partition basis within a consumer group.
6868

0 commit comments

Comments
 (0)