Microsoft Azure Batch Client Library for Python providing comprehensive APIs for managing batch computing workloads in Azure cloud
91
{
"context": "This criteria evaluates how well the engineer uses the azure-batch package to configure task constraints including wall-clock time limits, retry counts, and retention times. It assesses the correct usage of TaskConstraints and TaskAddParameter classes.",
"type": "weighted_checklist",
"checklist": [
{
"name": "TaskConstraints usage",
"description": "Creates and uses the TaskConstraints class from azure.batch.models to configure constraint parameters",
"max_score": 25
},
{
"name": "TaskAddParameter creation",
"description": "Uses TaskAddParameter class from azure.batch.models with task_id and command_line parameters to create task objects",
"max_score": 20
},
{
"name": "Max wall-clock time",
"description": "Correctly sets the max_wall_clock_time parameter in TaskConstraints using timedelta objects",
"max_score": 15
},
{
"name": "Max retry count",
"description": "Correctly sets the max_task_retry_count parameter in TaskConstraints with integer values",
"max_score": 15
},
{
"name": "Retention time",
"description": "Correctly sets the retention_time parameter in TaskConstraints using timedelta objects",
"max_score": 15
},
{
"name": "Constraint integration",
"description": "Properly assigns the TaskConstraints object to the constraints parameter of TaskAddParameter",
"max_score": 10
}
]
}Install with Tessl CLI
npx tessl i tessl/pypi-azure-batchdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10