Amazon QuickSight

Amazon QuickSight is a fast business analytics service to build visualizations, perform ad hoc analysis, and quickly get business insights from your data. Amazon QuickSight seamlessly discovers AWS data sources, enables organizations to scale to hundreds of thousands of users, and delivers fast and responsive query performance by using the Amazon QuickSight Super-fast, Parallel, In-Memory, Calculation Engine (SPICE).

Prerequisite Tasks

To use these operators, you must do a few things:

Operators

Amazon QuickSight create ingestion

The QuickSightCreateIngestionOperator creates and starts a new SPICE ingestion for a dataset. The operator also refreshes existing SPICE datasets.

airflow/providers/amazon/aws/example_dags/example_quicksight.py[source]

quicksight_create_ingestion_no_waiting = QuickSightCreateIngestionOperator(
    task_id="quicksight_create_ingestion_no_waiting",
    data_set_id=DATA_SET_ID,
    ingestion_id=INGESTION_ID,
    wait_for_completion=False,
)

Sensors

Amazon QuickSight ingestion sensor

The QuickSightSensor waits for an Amazon QuickSight create ingestion until it reaches a terminal state.

airflow/providers/amazon/aws/example_dags/example_quicksight.py[source]

quicksight_job_status = QuickSightSensor(
    task_id="quicksight_job_status",
    data_set_id=DATA_SET_ID,
    ingestion_id=INGESTION_ID,
)

Was this entry helpful?