CheckpointStore Třída
CheckpointStore se zabývá interakcí se zvolenou službou úložiště.
Může vypisovat a deklarovat vlastnictví oddílů a také vypisovat a ukládat kontrolní body.
- Dědičnost
-
CheckpointStore
Konstruktor
CheckpointStore()
Metody
claim_ownership |
Pokusí se deklarovat vlastnictví seznamu zadaných oddílů. |
list_checkpoints |
Zobrazí seznam aktualizovaných kontrolních bodů ze zvolené služby úložiště. |
list_ownership |
Načte úplný seznam vlastnictví ze zvolené služby úložiště. |
update_checkpoint |
Aktualizace kontrolní bod pomocí zadaných informací pro posun, přidružený oddíl a skupinu příjemců ve zvolené službě úložiště. Poznámka: Pokud plánujete implementovat vlastní úložiště kontrolních bodů se záměrem spuštění mezi sadami EventHubs SDK pro různé jazyky, doporučujeme zachovat hodnotu posunu jako celé číslo. |
claim_ownership
Pokusí se deklarovat vlastnictví seznamu zadaných oddílů.
abstract async claim_ownership(ownership_list: Iterable[Dict[str, Any]], **kwargs: Any) -> Iterable[Dict[str, Any]]
Parametry
Name | Description |
---|---|
ownership_list
Vyžadováno
|
Iterable slovníků obsahujících všechna vlastnictví, která se mají deklarovat. |
Návraty
Typ | Description |
---|---|
Iterable[Dict[str,Any]], Iterable <xref:of> <xref:dictionaries> <xref:containing> <xref:azure.eventhub.amqp.AmqpMessageBodyType.partition> <xref:ownership> <xref:information>:fully_qualified_namespace (str): <xref:The> <xref:fully> <xref:qualified> <xref:namespace> <xref:that> <xref:the> <xref:Event> <xref:Hub> <xref:belongs> <xref:to.> <xref:The> <xref:azure.eventhub.amqp.AmqpMessageBodyType.format> <xref:is> <xref:like> “<<xref:namespace>><xref:.servicebus.windows.net>”<xref:.> eventhub_name (str): <xref:The> <xref:name> <xref:of> <xref:the> <xref:specific> <xref:Event> <xref:Hub> <xref:the> <xref:checkpoint> <xref:is> <xref:associated> <xref:with>, <xref:relative> <xref:to> <xref:the> <xref:Event> <xref:Hubs> <xref:namespace> <xref:that> <xref:contains> <xref:it.> <xref:consumer_group> (str): <xref:The> <xref:name> <xref:of> <xref:the> <xref:consumer> <xref:group> <xref:the> <xref:ownership> <xref:are> <xref:associated> <xref:with.> <xref:partition_id> (str): <xref:The> <xref:azure.eventhub.amqp.AmqpMessageBodyType.partition> <xref:ID> <xref:which> <xref:the> <xref:checkpoint> <xref:is> <xref:created> <xref:for.> <xref:owner_id> (str): <xref:A> <xref:UUID> <xref:representing> <xref:the> <xref:owner> <xref:attempting> <xref:to> <xref:claim> <xref:this> <xref:partition.> <xref:last_modified_time> (<xref:UTC> datetime): <xref:The> <xref:last> time <xref:this> <xref:ownership> <xref:was> <xref:claimed.> <xref:etag> (str): <xref:The> <xref:Etag> <xref:value> <xref:for> <xref:the> <xref:last> time <xref:this> <xref:ownership> <xref:was> <xref:modified.> Optional <xref:depending> <xref:on> <xref:storage> <xref:implementation.>
|
list_checkpoints
Zobrazí seznam aktualizovaných kontrolních bodů ze zvolené služby úložiště.
abstract async list_checkpoints(fully_qualified_namespace: str, eventhub_name: str, consumer_group: str, **kwargs: Any) -> Iterable[Dict[str, Any]]
Parametry
Name | Description |
---|---|
fully_qualified_namespace
Vyžadováno
|
Plně kvalifikovaný obor názvů, do kterého centrum událostí patří. Formát je jako ".servicebus.windows.net". |
eventhub_name
Vyžadováno
|
Název konkrétního centra událostí, ke kterému jsou kontrolní body přidruženy, vzhledem k oboru názvů služby Event Hubs, který ho obsahuje. |
consumer_group
Vyžadováno
|
Název skupiny uživatelů, ke které jsou kontrolní body přidruženy. |
Návraty
Typ | Description |
---|---|
Iterable[Dict[str,Any]], Iterable <xref:of> <xref:dictionaries> <xref:containing> <xref:azure.eventhub.amqp.AmqpMessageBodyType.partition> <xref:checkpoint> <xref:information>:fully_qualified_namespace (str): <xref:The> <xref:fully> <xref:qualified> <xref:namespace> <xref:that> <xref:the> <xref:Event> <xref:Hub> <xref:belongs> <xref:to.> <xref:The> <xref:azure.eventhub.amqp.AmqpMessageBodyType.format> <xref:is> <xref:like> “<<xref:namespace>><xref:.servicebus.windows.net>”<xref:.> eventhub_name (str): <xref:The> <xref:name> <xref:of> <xref:the> <xref:specific> <xref:Event> <xref:Hub> <xref:the> <xref:checkpoints> <xref:are> <xref:associated> <xref:with>, <xref:relative> <xref:to> <xref:the> <xref:Event> <xref:Hubs> <xref:namespace> <xref:that> <xref:contains> <xref:it.> <xref:consumer_group> (str): <xref:The> <xref:name> <xref:of> <xref:the> <xref:consumer> <xref:group> <xref:the> <xref:checkpoints> <xref:are> <xref:associated> <xref:with.> <xref:partition_id> (str): <xref:The> <xref:azure.eventhub.amqp.AmqpMessageBodyType.partition> <xref:ID> <xref:which> <xref:the> <xref:checkpoint> <xref:is> <xref:created> <xref:for.> sequence_number (int): <xref:The> <xref:sequence> <xref:number> <xref:of> <xref:the> <xref:EventData.> offset (str): <xref:The> offset <xref:of> <xref:the> <xref:EventData.>
|
list_ownership
Načte úplný seznam vlastnictví ze zvolené služby úložiště.
abstract async list_ownership(fully_qualified_namespace: str, eventhub_name: str, consumer_group: str, **kwargs: Any) -> Iterable[Dict[str, Any]]
Parametry
Name | Description |
---|---|
fully_qualified_namespace
Vyžadováno
|
Plně kvalifikovaný obor názvů, do kterého centrum událostí patří. Formát je jako ".servicebus.windows.net". |
eventhub_name
Vyžadováno
|
Název konkrétního centra událostí, ke kterému jsou přidružená vlastnictví oddílů, vzhledem k oboru názvů služby Event Hubs, který ho obsahuje. |
consumer_group
Vyžadováno
|
Název skupiny uživatelů, ke které jsou vlastnictví přidružena. |
Návraty
Typ | Description |
---|---|
Iterable[Dict[str, Any]], Iterable <xref:of> <xref:dictionaries> <xref:containing> <xref:azure.eventhub.amqp.AmqpMessageBodyType.partition> <xref:ownership> <xref:information>:fully_qualified_namespace (str): <xref:The> <xref:fully> <xref:qualified> <xref:namespace> <xref:that> <xref:the> <xref:Event> <xref:Hub> <xref:belongs> <xref:to.> <xref:The> <xref:azure.eventhub.amqp.AmqpMessageBodyType.format> <xref:is> <xref:like> “<<xref:namespace>><xref:.servicebus.windows.net>”<xref:.> eventhub_name (str): <xref:The> <xref:name> <xref:of> <xref:the> <xref:specific> <xref:Event> <xref:Hub> <xref:the> <xref:checkpoint> <xref:is> <xref:associated> <xref:with>, <xref:relative> <xref:to> <xref:the> <xref:Event> <xref:Hubs> <xref:namespace> <xref:that> <xref:contains> <xref:it.> <xref:consumer_group> (str): <xref:The> <xref:name> <xref:of> <xref:the> <xref:consumer> <xref:group> <xref:the> <xref:ownership> <xref:are> <xref:associated> <xref:with.> <xref:partition_id> (str): <xref:The> <xref:azure.eventhub.amqp.AmqpMessageBodyType.partition> <xref:ID> <xref:which> <xref:the> <xref:checkpoint> <xref:is> <xref:created> <xref:for.> <xref:owner_id> (str): <xref:A> <xref:UUID> <xref:representing> <xref:the> <xref:current> <xref:owner> <xref:of> <xref:this> <xref:partition.> <xref:last_modified_time> (<xref:UTC> datetime): <xref:The> <xref:last> time <xref:this> <xref:ownership> <xref:was> <xref:claimed.> <xref:etag> (str): <xref:The> <xref:Etag> <xref:value> <xref:for> <xref:the> <xref:last> time <xref:this> <xref:ownership> <xref:was> <xref:modified.> Optional <xref:depending> <xref:on> <xref:storage> <xref:implementation.>
|
update_checkpoint
Aktualizace kontrolní bod pomocí zadaných informací pro posun, přidružený oddíl a skupinu příjemců ve zvolené službě úložiště.
Poznámka: Pokud plánujete implementovat vlastní úložiště kontrolních bodů se záměrem spuštění mezi sadami EventHubs SDK pro různé jazyky, doporučujeme zachovat hodnotu posunu jako celé číslo.
abstract async update_checkpoint(checkpoint: Dict[str, str | int | None], **kwargs: Any) -> None
Parametry
Name | Description |
---|---|
checkpoint
Vyžadováno
|
Dict obsahující informace o kontrolním bodu:
|
Návraty
Typ | Description |
---|---|
Azure SDK for Python