tessl install tessl/pypi-azure-data-tables@12.7.0Microsoft Azure Data Tables Client Library for Python
Agent Success
Agent success rate when using this tile
90%
Improvement
Agent success rate improvement when using this tile compared to baseline
0.97x
Baseline
Agent success rate without this tile
93%
Build a resilient client for accessing an Azure Table Storage service that can handle intermittent network failures and service throttling.
Your implementation should provide a function that creates a configured table client with custom retry behavior:
Create a function create_resilient_client that returns a configured TableClient with the following retry characteristics:
@generates
from azure.data.tables import TableClient
def create_resilient_client(
endpoint: str,
table_name: str,
credential
) -> TableClient:
"""
Create a TableClient configured with custom retry policies for resilience.
Args:
endpoint: The Table service endpoint URL
table_name: Name of the table to access
credential: Authentication credential for the service
Returns:
A configured TableClient instance with custom retry behavior
"""
passProvides Azure Table Storage client functionality with configurable retry policies.