Skip to main content

Worker SDK for the Avtomatika orchestrator.

Project description

EN | ES | RU

Avtomatika Worker SDK

License: MPL 2.0 PyPI version Python 3.11+

The official SDK for creating workers compatible with the Avtomatika Orchestrator. It handles polling, heartbeats, S3 payload offloading, and graceful shutdown so you can focus on your business logic.

Installation

pip install avtomatika-worker

Extras:

  • pip install "avtomatika-worker[s3]" — for S3 payload offloading (requires obstore).
  • pip install "avtomatika-worker[pydantic]" — for Pydantic-based parameter validation.
  • pip install "avtomatika-worker[dev]" — for development features like CLI --reload.

Quick Start

Option 1: CLI Usage (Recommended)

Define your worker in a Python module (e.g., app/main.py). The SDK automatically infers skill names and schemas from your code!

from avtomatika_worker import Worker
from pydantic import BaseModel

worker = Worker(worker_type="image-processor")

class ResizeParams(BaseModel):
    width: int
    height: int
    url: str

# Automatic: name="resize", schema from ResizeParams
@worker.skill()
async def resize(params: ResizeParams):
    print(f"Resizing to {params.width}px")
    return {"status": "success", "data": {"result": "ok"}}

Option 2: Dynamic Skill Loading

Place your skill handlers in the skills/ directory (e.g., skills/my_skills.py):

from avtomatika_worker import SkillBlueprint

bp = SkillBlueprint()

# Add metadata for the Marketplace (optional)
@bp.skill(price=0.5, category="AI")
async def generate_preview(params: dict):
    return {"status": "success"}

Run the worker, and it will automatically load all skills from the directory:

# It will look into ./skills by default
worker run --app app.main:worker

Key Features

1. Smart Skill Registration

  • Zero Configuration: Names and schemas are inferred from function names and type hints.
  • Auto-Contracts: Both input_schema and output_schema are automatically generated from Pydantic models or standard Dataclasses.
  • Generic Events: Declare custom events via @worker.skill(events={"alert": Schema}) and emit them using the send_event helper. Progress is also a system event.
  • Dynamic Extensions: Pass any custom fields (like price or tier) directly to the decorator.

2. Optimized Network Traffic

  • Skills Hashing: Workers only send the full skill list when it actually changes. Periodic heartbeats use a lightweight skills_hash.
  • Self-Healing Sync: If the orchestrator loses worker metadata, it can trigger a Full Sync via heartbeat response, ensuring seamless recovery.
  • Intelligent Transports: Events are sent via WebSocket if available, falling back to HTTP automatically.

3. Fail-Fast Validation

  • Local Enforcement: The SDK validates task results and events against their declared schemas locally. Errors are logged immediately, preventing the transmission of "broken" data.

4. Structured Logging

The SDK supports both human-readable and JSON logging.

  • LOG_FORMAT=json — for production (ELK, Grafana Loki).
  • LOG_FORMAT=text — for development (default).
  • All logs automatically include worker_id, task_id, and job_id context.

5. Graceful Shutdown

Built-in handling of SIGTERM and SIGINT.

4. File System & S3 Offloading

  • TaskFiles: Async helper for isolated task workspaces.
  • S3 Payload Offloading: Automatic download/upload of large files via S3 URIs in task parameters (requires [s3] extra).

Configuration Reference

Variable Description Default
WORKER_ID Unique identifier for the worker instance. UUID
ORCHESTRATOR_URL Address of the orchestrator. http://localhost:8080
LOG_FORMAT Log format: text or json. text
LOG_LEVEL Minimum log level (DEBUG, INFO, etc). INFO
WORKER_SHUTDOWN_TIMEOUT Max seconds to wait for tasks during shutdown. 30.0
WORKER_ENABLE_WEBSOCKETS Enable real-time commands (e.g., cancellation). false
TASK_FILES_DIR Local directory for temporary S3 payloads. /tmp/payloads
WORKER_SKILLS_DIR Directory to dynamically load skills from. skills

Documentation

  • Development Guide — Detailed instructions on how to create custom workers, use middlewares, and handle S3 offloading.

Docker Usage

Use the provided Dockerfile for easy deployment:

docker build -t my-worker .
docker run -e ORCHESTRATOR_URL=... my-worker worker run --app app:worker

Development

Install development dependencies:

pip install -e .[test,dev]
pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

avtomatika_worker-1.0b8.tar.gz (47.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

avtomatika_worker-1.0b8-py3-none-any.whl (31.7 kB view details)

Uploaded Python 3

File details

Details for the file avtomatika_worker-1.0b8.tar.gz.

File metadata

  • Download URL: avtomatika_worker-1.0b8.tar.gz
  • Upload date:
  • Size: 47.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.11

File hashes

Hashes for avtomatika_worker-1.0b8.tar.gz
Algorithm Hash digest
SHA256 bf79851d7bdf989a2231c806d73f28065a860288a3b71dfd86cbaf6c724fcea3
MD5 99faf5b642e362f7bfc49f962af5547c
BLAKE2b-256 97de4795fa642d815be9613bea89302eb8c766b5dd6ac8dbac350f671c46215a

See more details on using hashes here.

File details

Details for the file avtomatika_worker-1.0b8-py3-none-any.whl.

File metadata

File hashes

Hashes for avtomatika_worker-1.0b8-py3-none-any.whl
Algorithm Hash digest
SHA256 d017be5e8af51c3215fdde15bb1887be3a12d85ec7c48237f3b89de9d66edb87
MD5 024d5c33272a570b468555e19b83a897
BLAKE2b-256 3ac5f29251558d756644ea1d225f8dc3e21e09d8c9b9556a27a3487692ea640b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page