Hooks and Connections
This lesson explores the use of hooks and connections.
We'll cover the following...
We'll cover the following...
Airflow operators and sensors don’t operate in isolation; rather, they can connect to systems outside of Airflow, such as databases, cloud systems, remote machines, etc., using hooks and connections, which contain the necessary information required to connect to external systems.
Hooks
All hooks derive from the base class, BaseHook, defined ...