Electricity Maps' Airflow provider to schedule operations within an Airflow pipeline
Project description
Electricity Maps Airflow scheduler
An Apache Airflow provider that schedules pipeline operations to run when carbon intensity is lowest. The operator defers task execution until the optimal time within a configurable patience window, using the Electricity Maps carbon-aware optimizer API.
Installation
pip install electricitymaps-airflow-scheduler
Configuration
Set your Electricity Maps API token as an environment variable:
export ELECTRICITYMAPS_API_TOKEN=your_token_here
Usage
The package provides ElectricityMapsSchedulerOperator, a deferrable operator that queries the Electricity Maps API to find the optimal execution time based on carbon intensity forecasts.
Basic example
from datetime import datetime, timedelta, timezone
from airflow.sdk import dag
from airflow.providers.standard.operators.python import PythonOperator
from electricitymaps_airflow_scheduler.scheduler import ElectricityMapsSchedulerOperator
@dag(
start_date=datetime.now(timezone.utc),
schedule=None,
catchup=False,
)
def my_carbon_aware_workflow():
# This operator will defer until the optimal low-carbon time
scheduler = ElectricityMapsSchedulerOperator(
task_id="wait_for_low_carbon",
patience=timedelta(hours=24), # How long to wait for optimal conditions
expected_duration=timedelta(hours=2), # Expected runtime of downstream tasks
location=(50.851748, 4.3286263), # Brussels (lat, lon)
)
def my_task():
print("Running at optimal carbon intensity!")
run_task = PythonOperator(
task_id="run_task",
python_callable=my_task,
)
scheduler >> run_task
my_carbon_aware_workflow()
Operator parameters
| Parameter | Type | Description |
|---|---|---|
patience |
timedelta |
Maximum time the operator will wait for optimal conditions |
expected_duration |
timedelta |
Expected runtime of the tasks that follow this operator |
location |
tuple[float, float] |
Geographic coordinates as (latitude, longitude) |
The operator uses the flow-traced_carbon_intensity optimization signal by default, which minimizes the carbon intensity of electricity consumption at the specified location.
Location requirements
The operator supports a single location at a time. The provided coordinates must be within a zone supported by your Electricity Maps API subscription with forecast access. The API resolves coordinates to a zone_key (e.g., BE for Belgium, DE for Germany).
The optimizer uses forecast data to determine the optimal execution time within your patience window, so standard API access with only real-time data is not sufficient.
You can check available zones in the Electricity Maps API documentation.
How it works
The operator uses the Electricity Maps Carbon-Aware Optimizer API endpoint:
POST https://api.electricitymaps.com/beta/carbon-aware-optimizer
When the operator executes, it:
- Calculates the optimization window from now until
now + patience(rounded to the next hour) - Sends a request to the API with:
duration: The expected task duration (ceiled to whole hours)startWindow: The next full hour from the current timeendWindow: The end of the patience windowlocations: The coordinates as[longitude, latitude]optimizationMetric: The signal to optimize for (default:flow-traced_carbon_intensity)
- Receives the optimal start time from the API response
- If the optimal time is in the future, the operator defers using Airflow's
DateTimeTriggerand releases the worker - When the trigger fires at the optimal time, the operator completes and downstream tasks begin
This deferrable pattern means no worker slot is occupied while waiting for optimal conditions.
Development
# Install dependencies
poetry install
# Run linting
poetry run ruff check .
poetry run ruff format .
# Run tests
poetry run pytest
# Run Airflow locally (credentials shown in logs)
poetry run airflow standalone
License
Apache License 2.0
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file electricitymaps_airflow_scheduler-0.1.2.tar.gz.
File metadata
- Download URL: electricitymaps_airflow_scheduler-0.1.2.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0df01e8fdc7fd508aec4e16a9295dca5d622b2d1979ddc380a61ef6471d24549
|
|
| MD5 |
ee17be20dd4f1584ab226238600253c0
|
|
| BLAKE2b-256 |
5a3a1908cfcccb1e19483fa69fdf848ae7aaf92794209553977c441ff0aafcc3
|
File details
Details for the file electricitymaps_airflow_scheduler-0.1.2-py3-none-any.whl.
File metadata
- Download URL: electricitymaps_airflow_scheduler-0.1.2-py3-none-any.whl
- Upload date:
- Size: 11.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a8468d731daa78c9eef4f4b8629c90f59dc3660c2f05a818ea50564babfcd32
|
|
| MD5 |
65b05668ef7ec1258934988e1e11d7ad
|
|
| BLAKE2b-256 |
4861a65d7d4806f47357fd9e51b60b5dd67b5ea3f4caa115a03a8aecf7eb7b96
|