Skip to main content

airflow-providers-couchbase

A custom Apache Airflow provider for Couchbase

ci pypi version airflow version


Table of Contents

Overview

The airflow-providers-couchbase enables interactions with Couchbase clusters within Apache Airflow workflows. It provides custom Couchbase Hook that allow users to seamlessly interact with Couchbase databases, execute queries, manage documents, and more.

For those new to Apache Airflow, a DAG (Directed Acyclic Graph) represents a workflow as a collection of tasks with directional dependencies. Each task in our example DAGs performs specific operations with Couchbase, such as querying data or processing documents.

Installation

pip install airflow-providers-couchbase

Upgrading to 2.0.0

2.0.0 targets Apache Airflow 3 and drops support for Airflow 2. If you are still on Airflow 2, stay on 1.0.0.

Breaking changes:

  • Apache Airflow >= 3.3.1, < 4.0.0 (was >= 2.2). The hook now subclasses airflow.sdk.BaseHook and will not import under Airflow 2.
  • Python >= 3.11 (was >= 3.7).
  • Config is now a TypedDict instead of a dict subclass, covering the same options. Config(...) calls, Config(), and dict literals keep working; only two edge cases changed: Config(kv_timeout=None) is now a type error (omit the key instead), and isinstance(config, Config) now raises TypeError (use isinstance(config, dict)).
  • CouchbaseHook.default_config removed. config now defaults to None.

Running a DAG Example Inside an Airflow Docker Container

Prerequisites

  • Docker and Docker Compose installed on your machine
  • A running Couchbase cluster accessible from your Docker container
  • The travel-sample bucket available in your Couchbase cluster

The stack runs Apache Airflow 3.3.1, which this provider requires (Python 3.11+).

Connecting to a Local Couchbase Server

If you're running Couchbase Server locally (either installed natively or in Docker), you'll need to make some adjustments to connect from the Airflow containers:

  1. For locally installed Couchbase Server:

    • Update the Couchbase connection host to use your machine's IP address instead of localhost
    • Example: couchbase://192.168.1.100 (replace with your actual IP)
  2. For Couchbase Server running in Docker:

    • Add Couchbase service to your docker-compose.yaml:
    services:
      couchbase:
        image: couchbase/server:latest
        ports:
          - "8091-8096:8091-8096"
          - "11210-11211:11210-11211"
        networks:
          - airflow-couchbase
    
      airflow-common:
        networks:
          - airflow-couchbase
          
    networks:
      airflow-couchbase:
        driver: bridge
    
    • Update the Couchbase connection host to use the service name: couchbase://couchbase

Remember to initialize your Couchbase Server with:

  • Create a bucket named "travel-sample"
  • Import the travel-sample dataset
  • Create a user with appropriate permissions

Steps to Run the Example DAG

  1. Navigate to the Docker Directory:

    cd docker
    
  2. Create the .env file:

    Airflow 3's compose file reads AIRFLOW_UID and FERNET_KEY from docker/.env:

    printf 'AIRFLOW_UID=%s\nFERNET_KEY=%s\n' "$(id -u)" "$(python -c 'import base64,os; print(base64.urlsafe_b64encode(os.urandom(32)).decode())')" > .env
    
  3. Build and Run the Docker Containers:

    # Initialize the Airflow database and create the first user account
    docker compose up airflow-init
    
    # Start all services defined in docker-compose.yml
    docker compose up --build
    
  4. Access the Airflow Web UI:

  5. Configure a Couchbase Connection:

    • Go to Admin -> Connections
    • Click "+" to add a new connection
    • Fill in the details:
      • Connection Id: couchbase_conn_id
      • Connection Type: Couchbase
      • Host: your_couchbase_host
      • Login: Your Couchbase username
      • Password: Your Couchbase password
      • Extra: Additional configuration parameters (JSON format)
  6. Trigger the DAG:

    • Go to DAGs view
    • Find "airflow_test_couchbase_cluster" DAG
    • Click "Play" to trigger a manual run
  7. Monitor the Execution:

    • Click on the DAG run to view progress
    • View logs, duration, and status for each task
    • For a visual guide of this process, check our step-by-step tutorial on docs/videos/airflow

Example DAGs Explanation

1. airflow_test_couchbase_cluster.py

  • Basic Couchbase interaction example
  • Connects using CouchbaseHook
  • Queries "airline" collection
  • Extracts document IDs
  • Converts data to CSV

2. airflow_test_couchbase_scope.py

  • Advanced example with direct scope/collection access
  • Retrieves document IDs and full documents
  • Includes error handling
  • Processes complete documents

Both DAGs follow ETL pattern:

  • Extract:

    • Connect to Couchbase using CouchbaseHook
    • Query the "airline" collection in "travel-sample" bucket
    • Retrieve document IDs and data (airflow_test_couchbase_scope.py retrieves full documents, airflow_test_couchbase_cluster.py retrieves IDs only)
  • Transform:

    • Convert Couchbase query results to pandas DataFrame
    • Save DataFrame to a temporary CSV file using tempfile.NamedTemporaryFile
  • Load:

    • Read the temporary CSV file to verify data integrity
    • Clean up by removing the temporary file
    • (Placeholder: In production, you would upload to S3 or similar storage)

Clean Up

docker-compose down -v

Additional Resources

License

airflow-providers-couchbase is distributed under the terms of the MIT license.


📢 Support Policy

We truly appreciate your interest in this project!
This project is community-maintained, which means it's not officially supported by our support team.

If you need help, have found a bug, or want to contribute improvements, the best place to do that is right here — by opening a GitHub issue.
Our support portal is unable to assist with requests related to this project, so we kindly ask that all inquiries stay within GitHub.

Your collaboration helps us all move forward together — thank you!

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

airflow_providers_couchbase-2.0.0.tar.gz (17.7 kB view details)

Uploaded Source

Built Distribution

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

airflow_providers_couchbase-2.0.0-py3-none-any.whl (18.5 kB view details)

Uploaded Python 3

File details

Details for the file airflow_providers_couchbase-2.0.0.tar.gz.

File metadata

File hashes

Hashes for airflow_providers_couchbase-2.0.0.tar.gz
Algorithm Hash digest
SHA256 c630c98b32fa0204a81e168683c1851a5b77be8adb1b807b8c2163d070f1e912
MD5 cf94a70eac293a5a60c2cb07e14517f0
BLAKE2b-256 e6d0ad867829b131f10fd3c95470adf311a861ebb20a5d4428cfa6dbbc6f6ad3

See more details on using hashes here.

Provenance

The following attestation bundles were made for airflow_providers_couchbase-2.0.0.tar.gz:

Publisher: release.yml on Couchbase-Ecosystem/airflow-providers-couchbase

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

File details

Details for the file airflow_providers_couchbase-2.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for airflow_providers_couchbase-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 825c3c2496c4940bb3a3c716f2bf471ab03aaffb29013250403454798c1df200
MD5 9b7184d680c00b9640356f569e01d0eb
BLAKE2b-256 651b65b382152ff42623cf8a572f4bf48e6909707153af32251c861b6153fc2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for airflow_providers_couchbase-2.0.0-py3-none-any.whl:

Publisher: release.yml on Couchbase-Ecosystem/airflow-providers-couchbase

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

Release history Release notifications | RSS feed

This release

2.0.0 This release

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page