Runners#
The hastegeo.core.runners package provides task execution backends for running compute-intensive operations (training, inference, imagery preprocessing) on remote infrastructure.
Supported Backends#
Backend |
Class |
Description |
|---|---|---|
Azure Batch |
|
GPU-enabled task execution via Azure Batch pools |
Unified Runner (hastegeo.core.runners.unified_runner)#
Factory wrapper that instantiates the correct runner based on configuration.
Abstract Base (hastegeo.core.runners.base)#
Defines the interface all runner implementations must follow.
Abstract methods: get_filecontent_from_task(), get_task_status(), add_task(), cleanup_task(), cancel_task()
Azure Batch Runner (hastegeo.core.runners.azure_batch)#
Executes tasks on Azure Batch GPU pools using Docker container images (pulled from Azure Container Registry).
AzureBatchRunner— High-level runner implementing the base interfaceAzureBatchJob— Low-level Azure Batch job and task management