Skip to main content

Adaptive thread pool executor with dynamic scaling policies

Project description

Adaptive Executor

Adaptive thread pool executor that scales concurrency based on policies.

Features

  • Time-based scaling
  • CPU & memory criteria
  • Multi-criterion aggregation
  • Graceful shutdown

Installation

Minimal Installation (Core Only)

pip install adaptive-executor

Feature-Specific Installations

# Time-based scaling only
pip install adaptive-executor[time]

# CPU/Memory monitoring only
pip install adaptive-executor[cpu]

# Complete feature set (recommended)
pip install adaptive-executor[standard]

# Development with all tools
pip install adaptive-executor[dev]

Quick Start

from adaptive_executor import AdaptiveExecutor, MultiCriterionPolicy
from adaptive_executor.criteria import TimeCriterion, CpuCriterion
from datetime import time

# Create scaling criteria
time_policy = TimeCriterion(
    worker_count=8,
    active_start=time(22, 0),
    active_end=time(6, 0),
    timezone="UTC",
)
cpu_policy = CpuCriterion(threshold=75, workers=4)

# Combine criteria
policy = MultiCriterionPolicy([time_policy, cpu_policy], hard_cap=10)

# Create and use executor
executor = AdaptiveExecutor(max_workers=15, policy=policy)

# Submit tasks
def my_task(task_id):
    print(f"Processing task {task_id}")

for i in range(5):
    executor.submit(my_task, i)

executor.join()
executor.shutdown()

Development Setup

This project uses setuptools with a src/ package layout (src/adaptive_executor).

git clone https://github.com/Teut2711/adaptive-executor.git
cd adaptive-executor
uv venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
pip install -e ".[dev]"

Logging Configuration

The adaptive-executor provides comprehensive logging that can be configured to suit your needs. By default, it logs to the console with INFO level.

Basic Logging Control

from adaptive_executor import setup_logger

# Disable all logging
setup_logger(level=logging.CRITICAL)

# Or set a specific log level
import logging
setup_logger(level=logging.WARNING)  # Only show warnings and above

Advanced Logging Configuration

You can also configure file logging with rotation:

# Configure file logging with rotation (10MB per file, keep 5 backups)
setup_logger(
    level=logging.DEBUG,
    log_file="/var/log/adaptive_executor.log",
    max_bytes=10*1024*1024,  # 10MB
    backup_count=5
)

Environment Variables

You can control logging via environment variables:

# Set log level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
ADAPTIVE_EXECUTOR_LOG_LEVEL=WARNING

# Enable file logging
ADAPTIVE_EXECUTOR_LOG_FILE=/path/to/logfile.log

# Set max log file size (in bytes)
ADAPTIVE_EXECUTOR_LOG_MAX_BYTES=10485760  # 10MB

# Set number of backup files to keep
ADAPTIVE_EXECUTOR_LOG_BACKUP_COUNT=5

Disabling Logging Completely

To completely disable all logging:

import logging
logging.getLogger('adaptive_executor').addHandler(logging.NullHandler())
logging.getLogger('adaptive_executor').propagate = False

Documentation

Full documentation is available at https://Teut2711.github.io/adaptive-executor

License

MIT License - see LICENSE file for details.

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

adaptive_executor-0.1.0.tar.gz (23.2 kB view details)

Uploaded Source

Built Distribution

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

adaptive_executor-0.1.0-py3-none-any.whl (20.9 kB view details)

Uploaded Python 3

File details

Details for the file adaptive_executor-0.1.0.tar.gz.

File metadata

  • Download URL: adaptive_executor-0.1.0.tar.gz
  • Upload date:
  • Size: 23.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for adaptive_executor-0.1.0.tar.gz
Algorithm Hash digest
SHA256 ed3c41cf3a036f71f69b2921576df714bf53c17eb5045e8f9cf447612fcae43b
MD5 0db7d7424c86585c602e4ea93f3d05b8
BLAKE2b-256 21ea2517976b7f878ea8e3e41deeb7e6edfe3f8c2e0b064ca83d00d38f7c068c

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaptive_executor-0.1.0.tar.gz:

Publisher: publish.yaml on Teut2711/adaptive-executor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file adaptive_executor-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for adaptive_executor-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 05dfe364786d0743d673d007452e2bf17876efd48b24e724b666d1ebbb27a15b
MD5 8622a5cf36dcec5bea64e0edbf4f7491
BLAKE2b-256 654af8a790504fff711709f18d075660edcf06f2c29589a02471292d1cf2f74a

See more details on using hashes here.

Provenance

The following attestation bundles were made for adaptive_executor-0.1.0-py3-none-any.whl:

Publisher: publish.yaml on Teut2711/adaptive-executor

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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