airflow.providers.google.cloud.triggers.cloud_sql

This module contains Google Cloud SQL triggers.

Module Contents

Classes

CloudSQLExportTrigger

Trigger that periodically polls information from Cloud SQL API to verify job status.

class airflow.providers.google.cloud.triggers.cloud_sql.CloudSQLExportTrigger(operation_name, project_id=None, gcp_conn_id='google_cloud_default', impersonation_chain=None, poke_interval=20)[source]

Bases: airflow.triggers.base.BaseTrigger

Trigger that periodically polls information from Cloud SQL API to verify job status.

Implementation leverages asynchronous transport.

serialize()[source]

Return the information needed to reconstruct this Trigger.

Returns

Tuple of (class path, keyword arguments needed to re-instantiate).

async run()[source]

Run the trigger in an asynchronous context.

The trigger should yield an Event whenever it wants to fire off an event, and return None if it is finished. Single-event triggers should thus yield and then immediately return.

If it yields, it is likely that it will be resumed very quickly, but it may not be (e.g. if the workload is being moved to another triggerer process, or a multi-event trigger was being used for a single-event task defer).

In either case, Trigger classes should assume they will be persisted, and then rely on cleanup() being called when they are no longer needed.

Was this entry helpful?