Replies: 2 comments 8 replies
-
Nope. But if you get "connection refused" it likely means you are using wrong hostname, wrong port, or you have to configure your networking to allow your workers to connect to your api_server (using the right host and port). Connection refused always means tha when you try to connect to a give host and port, there is nothing on the other side to listen to your connection - so It's either firewall/networking blocking you, or you use wrong host/port. |
Beta Was this translation helpful? Give feedback.
-
@Frost3281 you cant access db directly from workers. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
In Airflow 2, I used the following Sensor to check the status of the latest run of external DAGs. In Airflow 3, this code no longer works.
"
Direct database access via the ORM is not allowed in Airflow 3.0
"I have tried many options: Engine / Connection and other methods of database access. And I tried access through API (always getting connection refused). Is there a proper way in Airflow 3 to achieve the same functionality with this operator?
Beta Was this translation helpful? Give feedback.
All reactions