Files
aitbc/docs/3_miners/3_job-management.md
AITBC System b033923756 chore: normalize file permissions across repository
- Remove executable permissions from configuration files (.editorconfig, .env.example, .gitignore)
- Remove executable permissions from documentation files (README.md, LICENSE, SECURITY.md)
- Remove executable permissions from web assets (HTML, CSS, JS files)
- Remove executable permissions from data files (JSON, SQL, YAML, requirements.txt)
- Remove executable permissions from source code files across all apps
- Add executable permissions to Python
2026-03-08 11:26:18 +01:00

1.5 KiB

Job Management

Accept and complete jobs on the AITBC network.

Overview

Jobs are assigned to miners based on GPU availability, price, and reputation.

Accept Jobs

Manual Acceptance

aitbc miner jobs --available
aitbc miner accept --job-id <JOB_ID>

Auto-Accept

aitbc miner auto-accept enable --max-concurrent 4

Auto-Accept Settings

# Set GPU requirements
aitbc miner auto-accept --gpu v100 --gpu-count 1-4

# Set price range
aitbc miner auto-accept --min-price 0.08 --max-price 0.12

Job States

State Description
assigned Job assigned, waiting to start
starting Preparing environment
running Executing job
uploading Uploading results
completed Job finished successfully
failed Job error occurred

Monitor Jobs

Check Status

aitbc miner job-status --job-id <JOB_ID>

Watch Progress

aitbc miner watch --job-id <JOB_ID>

List Active Jobs

aitbc miner jobs --active

Complete Jobs

Manual Completion

aitbc miner complete --job-id <JOB_ID>

Upload Results

aitbc miner upload --job-id <JOB_ID> --path ./results

Handle Failures

Retry Job

aitbc miner retry --job-id <JOB_ID>

Report Issue

aitbc miner report --job-id <JOB_ID> --reason "gpu-error"

Next