patricker opened a new issue, #31823:
URL: https://github.com/apache/airflow/issues/31823
### Apache Airflow version
2.6.1
### What happened
A BigQueryTableExistenceSensor without deferrable set to True is deferring.
Since we don't have a triggerer, the status of these sensors stays in
'deferred'.
### What you think should happen instead
Sensor has not been marked as deferred, so it should run normally on the
worker.
### How to reproduce
Add the sensor to a DAG and run it in an environment without a triggerer
service running.
export_freshness = BigQueryTableExistenceSensor(
project_id=_project_id,
dataset_id=dataset_id,
table_id=table_id,
dag=dag,
task_id="daily_export_sensor",
gcp_conn_id="google_cloud_default",
poke_interval=60 * 5,
)
### Operating System
Debian
### Versions of Apache Airflow Providers
apache-airflow-providers-google==10.0.0
### Deployment
Docker-Compose
### Deployment details
_No response_
### Anything else
We just upgraded 2.6.1, and have only seen the issue since upgrading.
### Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]