airflow.providers.amazon.aws.sensors.athena¶
Module Contents¶
Classes¶
| Poll the state of the Query until it reaches a terminal state; fails if the query fails. | 
- class airflow.providers.amazon.aws.sensors.athena.AthenaSensor(*, query_execution_id, max_retries=None, aws_conn_id='aws_default', sleep_time=10, **kwargs)[source]¶
- Bases: - airflow.sensors.base.BaseSensorOperator- Poll the state of the Query until it reaches a terminal state; fails if the query fails. - See also - For more information on how to use this sensor, take a look at the guide: Wait on Amazon Athena query results - Parameters
- query_execution_id (str) – query_execution_id to check the state of 
- max_retries (int | None) – Number of times to poll for query state before returning the current state, defaults to None 
- aws_conn_id (str) – aws connection to use, defaults to ‘aws_default’ 
- sleep_time (int) – Time in seconds to wait between two consecutive call to check query status on athena, defaults to 10 
 
 
