airflow
airflow copied to clipboard
Apache Airflow - A platform to programmatically author, schedule, and monitor workflows
### Apache Airflow version 2.8.1 ### If "Other Airflow 2 version" selected, which one? _No response_ ### What happened? Scheduler stops processing DAGs and moving them to the queued status....
### Description I would like to propose a new feature for Apache Airflow: the ability to assign a pool to an entire task group, enabling better control over the execution...
### Description On Airflow 2.8.1, the DAG processor manager no longer logs out to stdout (whereas it did on 2.6.2). ### Use case/motivation We currently have a configuration option for...
### Description I'd like the ability to "drain" a DAG from the UI. This would mean: - If a DAG is in a running state - disable the DAG after...
### What do you see as an issue? https://airflow.apache.org/docs/apache-airflow-providers-cncf-kubernetes/stable/operators.html#id13 The problem may related to the None value for api_version and kind see. log below ```python import kubernetes.client as k8s import...
~~closes: #38187~~ related : #38195 Update `get_uri` to return URI in sqlAlchemy URI format.
### Description Create a new operator inside of `airflow.providers.google.cloud.operators.gcs` that, given a pattern/preffix would return a list of files in said folder, similar to the client method: storage_client.get_bucket(BUCKET_NAME) bucket.list_blobs(prefix=filename) ###...
### Description The map_index_template field on a task is used to render a custom name for each individual sub task in a mapped task. It is generated by rendering the...
### Apache Airflow version Other Airflow 2 version (please specify below) ### If "Other Airflow 2 version" selected, which one? 2.8.1 ### What happened? The KubernetesPodOperator is duplicating tasks's logs...
Previously we relied on SerializedBaseOperator.serialize_operator for serialization of all Operator objects but this is no bueno because it does not work for mapped operator. Instead we use BaseSerialization.serialize, which calls...