Skip to main content

Apache Airflow Hex provider containing Hooks and Operators

Project description

Hex Airflow Provider

Provides an Airflow Operator and Hook to trigger Hex project runs.

This Airflow Provider Package provides Hooks and Operators for interacting with the Hex API.

Requirements

  • Airflow >=2.2
  • Hex API Token

Initial Setup

Install the package.

pip install airflow-provider-hex

After creating a Hex API token, set up your Airflow Connection Credentials in the Airflow UI.

Connection Setup

  • Connection ID: hex_default
  • Connection Type: Hex Connection
  • Host: https://app.hex.tech
  • Hex API Token: your-token-here

Operators

The airflow_provider_hex.operators.hex.HexRunProjectOperator Operator runs Hex Projects, either synchronously or asynchronously.

In the synchronous mode, the Operator will start a Hex Project run and then poll the run until either an error or success status is returned, or until the poll timeout. If the timeout occurs, the default behaviour is to attempt to cancel the run.

In the asynchronous mode, the Operator will request that a Hex Project is run, but will not poll for completion. This can be useful for long-running projects.

The operator accepts inputs in the form of a dictionary. These can be used to override existing input elements in your Hex project.

You may also optionally include notifications for a particular run. See the Hex API documentation for details.

Hooks

The airflow_provider_hex.hooks.hex.HexHook provides a low-level interface to the Hex API.

These can be useful for testing and development, as they provide both a generic run method which sends an authenticated request to the Hex API, as well as implementations of the run method that provide access to specific endpoints.

Examples

A simplified example DAG demonstrates how to use the Airflow Operator

from airflow_provider_hex.operators.hex import HexRunProjectOperator

PROJ_ID = 'abcdef-ghijkl-mnopq'
notifications: list[NotificationDetails] = [
    {
        "type": "SUCCESS",
        "includeSuccessScreenshot": True,
        "slackChannelIds": ["HEX666SQG"],
        "userIds": [],
        "groupIds": [],
    }
]
...
sync_run = HexRunProjectOperator(
    task_id="run",
    hex_conn_id="hex_default",
    project_id=PROJ_ID,
    dag=dag,
    notifications=notifications
)

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

airflow-provider-hex-0.1.9.tar.gz (8.8 kB view details)

Uploaded Source

Built Distribution

airflow_provider_hex-0.1.9-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file airflow-provider-hex-0.1.9.tar.gz.

File metadata

  • Download URL: airflow-provider-hex-0.1.9.tar.gz
  • Upload date:
  • Size: 8.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.2

File hashes

Hashes for airflow-provider-hex-0.1.9.tar.gz
Algorithm Hash digest
SHA256 299d505d62417f75660179b35a44d22031d2c8a7bc893fe62b0fa42f4755cf81
MD5 b2173a773646ab7a582550a9dca16a39
BLAKE2b-256 5cbadba3d4c64039185022538b8a0f534f4429917391809bc86ff7427094b14a

See more details on using hashes here.

File details

Details for the file airflow_provider_hex-0.1.9-py3-none-any.whl.

File metadata

File hashes

Hashes for airflow_provider_hex-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 2d5f6cf30f49979b1ef522a65135cd7565fd1a1c47c2b91f35b951408d59e66d
MD5 5d1932bf51d8c0be0d48829bd9de6446
BLAKE2b-256 d6c148965381973d97f1292d6c4173458603b71584f8a7c0f3ba432a58c3468a

See more details on using hashes here.

Supported by

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