Open the checkpoints
container in your storage account - this is where the processors are recording state:
<eh-name>.servicebus.windows.net/devicelogs/processing
checkpoint
and ownership
This is how the processor allocates partitions, by recording an owner ID in the metadata. Each owner records the offset it has processed up to - for that partition - in the checkpoint file.
Stop a processor and one of the others will take ownership of its partition(s), using the offset to pick up from the last message. It will take a few minutes, because the library waits to make sure the partition really isn’t being processed before it gets reallocated, so there are not two processors working it.