skillfed

apache-airflow-providers-presto

Provider package apache-airflow-providers-presto for Apache Airflow

apache-airflow-providers-presto v5.12.1 240.8K downloads/30d#8,897 on PyPI46,490
Permissive license Apache-2.0 Active released

What it is and what it does

This is an Apache Airflow provider package that adds Presto database connectivity to Airflow DAGs. It wraps the presto-python-client library and integrates with Airflow's task execution model, allowing you to define SQL queries as Airflow operators that run on a schedule or in response to upstream task completion. The package depends on apache-airflow, apache-airflow-providers-common-sql for shared SQL abstractions, pandas for result handling, and psycopg2-binary for PostgreSQL compatibility in certain configurations.

Typically used in data pipeline orchestration where you need to execute analytical or ETL queries against a Presto cluster as part of a larger workflow. The provider handles connection management, query execution, and result retrieval, abstracting away direct client library calls. It supports modern Python versions (3.10–3.14) and is actively maintained by the Apache Airflow project.

Use it for:

  • Schedule daily or hourly SQL aggregations on a Presto cluster as part of a data warehouse refresh pipeline.
  • Trigger Presto queries conditionally based on upstream task results in a multi-step ETL workflow.
  • Extract query results into pandas DataFrames for downstream Python processing or file export.
  • Monitor Presto query execution and retry failed queries using Airflow's built-in retry and alerting mechanisms.
  • Integrate Presto queries with Google Cloud Storage or other cloud providers via optional cross-provider dependencies.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Integrates Presto query execution into Apache Airflow workflows, enabling scheduled and triggered SQL queries against Presto clusters with result handling via pandas DataFrames.

Yes. This package is actively maintained, has no known vulnerabilities, installs with low friction, and is the standard way to run Presto queries in Airflow. Install it if you are already running Airflow and need to orchestrate Presto workloads; it is production-ready and widely used.

Install

apache-airflow-providers-presto on PyPI

pip

pip install apache-airflow-providers-presto

uv

uv add apache-airflow-providers-presto

poetry

poetry add apache-airflow-providers-presto

Installing apache-airflow-providers-presto

Before you install

Low friction install as a pure Python wheel. Actively maintained with a release 6 days old. Requires Apache Airflow 2.11.0 or later and modern Python (3.10–3.14); all runtime dependencies are stable, widely-used packages.

License in practice

Apache-2.0 permissive license allows use in commercial and proprietary projects with minimal restrictions; you must retain license notices and provide a copy of the license.

Quickstart

pip install apache-airflow-providers-presto

from airflow.providers.presto.operators.presto import PrestoOperator

task = PrestoOperator(
    task_id='query_presto',
    sql='SELECT * FROM my_table',
    presto_conn_id='presto_default'
)

Requires an existing Apache Airflow installation (>=2.11.0) and a configured Presto connection in Airflow's connection backend.

Verify before relying

  • Whether the package includes hooks, sensors, or transfer operators beyond the base PrestoOperator.
  • Support for Presto-specific features such as partitioned query execution or result caching.
  • Whether optional sqlalchemy extra enables ORM-style query building.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 6 — apache-airflow, apache-airflow-providers-common-compat, apache-airflow-providers-common-sql, presto-python-client, pandas, psycopg2-binary
Maintenance actively maintained — 6 days since the last release
Last repo commit
First released
Downloads 240,846/month — #8,897 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: apache_airflow_providers_presto-5.12.1-py3-none-any.whl

Keywords: airflow-provider, presto, airflow, integration

Development Status :: 5 - Production/StableEnvironment :: ConsoleEnvironment :: Web EnvironmentFramework :: Apache AirflowFramework :: Apache Airflow :: ProviderIntended Audience :: DevelopersIntended Audience :: System AdministratorsProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Topic :: System :: Monitoring

Tags

airflow presto integrationpresto sql operator airflowschedule presto queriesairflow database providerpresto data pipelineairflow sql execution
airflow-providerdata-orchestrationsql-integration

More Monitoring packages

tqdm

Wraps any iterable to display a real-time…

copyleft · top 100 on PyPI

opentelemetry-semantic-conventions

Provides generated Python code for…

permissive · top 100 on PyPI

opentelemetry-sdk

Provides the reference implementation of the…

permissive · top 100 on PyPI

opentelemetry-api

Provides the abstract API and interfaces for…

permissive · top 100 on PyPI

opentelemetry-exporter-otlp-proto-http

Exports OpenTelemetry observability data to an…

permissive · top 1,000 on PyPI

opentelemetry-instrumentation

Provides automatic instrumentation commands and…

permissive · top 1,000 on PyPI

apache-airflow-providers-salesforce

Integrates Salesforce data operations into…

permissive · top 5,000 on PyPI

apache-airflow-providers-trino

Integrates Apache Airflow with Trino, enabling…

permissive · top 15,000 on PyPI

presto-python-client

Provides a Python DBAPI-compatible client to…

permissive · top 5,000 on PyPI

apache-airflow-providers-databricks

Integrates Apache Airflow with Databricks,…

permissive · top 1,000 on PyPI

apache-airflow-providers-mysql

Integrates Apache Airflow with MySQL databases,…

permissive · top 5,000 on PyPI

apache-airflow-providers-exasol

Integrates Exasol database with Apache Airflow,…

permissive · top 15,000 on PyPI

apache-airflow-providers-postgres

Integrates PostgreSQL databases with Apache…

permissive · top 5,000 on PyPI

apache-airflow-providers-apache-hive

Integrates Apache Hive with Apache Airflow,…

permissive · top 15,000 on PyPI

apache-airflow-providers-common-sql

Provides common SQL operators, hooks, and…

permissive · top 1,000 on PyPI

presto-types-parser

Parses Presto SQL type annotations from rows…

permissive · top 15,000 on PyPI