or run

tessl search
Log in

Version

Workspace
tessl
Visibility
Public
Created
Last updated
Describes
pypipkg:pypi/azure-data-tables@12.7.x
tile.json

tessl/pypi-azure-data-tables

tessl install tessl/pypi-azure-data-tables@12.7.0

Microsoft 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%

rubric.jsonevals/scenario-10/

{
  "context": "This criteria evaluates how well the engineer uses the azure-data-tables package to implement geo-redundant storage (RA-GRS) functionality, specifically focusing on accessing secondary endpoints and retrieving replication statistics.",
  "type": "weighted_checklist",
  "checklist": [
    {
      "name": "Service Statistics Retrieval",
      "description": "Uses `TableServiceClient.get_service_stats()` method to retrieve geo-replication statistics including replication status and last sync time.",
      "max_score": 30
    },
    {
      "name": "Secondary Endpoint Configuration",
      "description": "Correctly configures `TableServiceClient` with `secondary_hostname` parameter or uses the `-secondary` naming convention to access the secondary endpoint (e.g., `https://<account>-secondary.table.core.windows.net`).",
      "max_score": 25
    },
    {
      "name": "Credential Management",
      "description": "Uses `AzureNamedKeyCredential` to create proper authentication credentials for both primary and secondary endpoint access.",
      "max_score": 15
    },
    {
      "name": "Replication Data Parsing",
      "description": "Correctly extracts and returns replication status (e.g., 'live', 'bootstrap') and last sync time from the service statistics response object.",
      "max_score": 15
    },
    {
      "name": "Table Verification",
      "description": "Uses methods like `query_tables()` or checks for table existence on the secondary client to verify table replication to the secondary region.",
      "max_score": 10
    },
    {
      "name": "Error Handling",
      "description": "Handles cases where geo-replication statistics are unavailable or secondary endpoint access fails, returning appropriate indicators (e.g., `is_available: False`).",
      "max_score": 5
    }
  ]
}