status
stringclasses
1 value
repo_name
stringclasses
13 values
repo_url
stringclasses
13 values
issue_id
int64
1
104k
updated_files
stringlengths
11
1.76k
title
stringlengths
4
369
body
stringlengths
0
254k
issue_url
stringlengths
38
55
pull_url
stringlengths
38
53
before_fix_sha
stringlengths
40
40
after_fix_sha
stringlengths
40
40
report_datetime
timestamp[ns, tz=UTC]
language
stringclasses
5 values
commit_datetime
timestamp[us, tz=UTC]
closed
apache/airflow
https://github.com/apache/airflow
30,335
["airflow/config_templates/config.yml", "airflow/config_templates/default_airflow.cfg", "airflow/config_templates/default_celery.py", "tests/executors/test_celery_executor.py"]
Reccomend (or set as default) to enable pool_recycle for celery workers (especially if using MySQL)
### What do you see as an issue? Similar to how `sql_alchemy_pool_recycle` defaults to 1800 seconds for the Airflow metastore: https://airflow.apache.org/docs/apache-airflow/stable/configurations-ref.html#config-database-sql-alchemy-pool-recycle If users are using celery as their backend it provides extra stability...
https://github.com/apache/airflow/issues/30335
https://github.com/apache/airflow/pull/30426
cb18d923f8253ac257c1b47e9276c39bae967666
bc1d68a6eb01919415c399d678f491e013eb9238
2023-03-27T16:31:21Z
python
2023-06-02T14:16:25Z
closed
apache/airflow
https://github.com/apache/airflow
30,324
["airflow/providers/cncf/kubernetes/CHANGELOG.rst", "airflow/providers/cncf/kubernetes/operators/pod.py", "airflow/providers/cncf/kubernetes/provider.yaml", "airflow/providers/cncf/kubernetes/utils/pod_manager.py", "kubernetes_tests/test_kubernetes_pod_operator.py", "tests/providers/cncf/kubernetes/decorators/test_kube...
KPO deferrable needs kubernetes_conn_id while non deferrable does not
### Apache Airflow version 2.5.2 ### What happened Not sure if this is a feature not a bug, but I can use KubernetesPodOperator fine without setting a kubernetes_conn_id. For example: ``` start = KubernetesPodOperator( namespace="mynamespace", cluster_context="mycontext", security...
https://github.com/apache/airflow/issues/30324
https://github.com/apache/airflow/pull/28848
a09fd0d121476964f1c9d7f12960c24517500d2c
85b9135722c330dfe1a15e50f5f77f3d58109a52
2023-03-27T09:59:56Z
python
2023-04-08T16:26:53Z
closed
apache/airflow
https://github.com/apache/airflow
30,309
["airflow/providers/docker/hooks/docker.py", "airflow/providers/docker/operators/docker.py", "tests/providers/docker/operators/test_docker.py"]
in DockerOperator, adding an attribute `tls_verify` to choose whether to validate the provided certificate.
### Description The current version of docker operator always performs TLS certificate validation. I think it would be nice to add an option to choose whether or not to validate the provided certificate. ### Use case/motivation My work environment has several docker hosts with expired self-signed certificates. Since...
https://github.com/apache/airflow/issues/30309
https://github.com/apache/airflow/pull/30310
51f9910ecbf1186aff164e09d118bdf04d21dfcb
c1a685f752703eeb01f9369612af8c88c24cca09
2023-03-26T15:14:46Z
python
2023-04-14T10:17:42Z
closed
apache/airflow
https://github.com/apache/airflow
30,287
["airflow/providers/amazon/aws/transfers/redshift_to_s3.py", "tests/providers/amazon/aws/transfers/test_redshift_to_s3.py"]
RedshiftToS3 Operator Wrapping Query in Quotes Instead of $$
### Apache Airflow version 2.5.2 ### What happened When passing a select_query into the RedshiftToS3 Operator, the query will error out if it contains any single quotes because the body of the UNLOAD statement is being wrapped in single quotes. ### What you think should happen instead Instead, it's better practic...
https://github.com/apache/airflow/issues/30287
https://github.com/apache/airflow/pull/35986
e0df7441fa607645d0a379c2066ca4ab16f5cb95
04a781666be2955ed518780ea03bc13a1e3bd473
2023-03-24T18:31:54Z
python
2023-12-04T19:19:00Z
closed
apache/airflow
https://github.com/apache/airflow
30,280
["airflow/www/static/css/dags.css", "airflow/www/templates/airflow/dags.html", "airflow/www/views.py", "docs/apache-airflow/core-concepts/dag-run.rst", "tests/www/views/test_views_home.py"]
Feature request - filter for dags with running status in the main page
### Description Feature request to filter by running dags (or by other statuses too). We have over 100 dags and we were having some performance problems. we wanted to see all the running Dags from the main page and found that we couldn't. We can see the light green circle in the runs (and that involves a lot of scro...
https://github.com/apache/airflow/issues/30280
https://github.com/apache/airflow/pull/30429
c25251cde620481592392e5f82f9aa8a259a2f06
dbe14c31d52a345aa82e050cc0a91ee60d9ee567
2023-03-24T13:11:24Z
python
2023-05-22T16:05:44Z
closed
apache/airflow
https://github.com/apache/airflow
30,240
["airflow/api_internal/endpoints/rpc_api_endpoint.py", "airflow/api_internal/internal_api_call.py", "airflow/serialization/enums.py", "airflow/serialization/serialized_objects.py", "tests/api_internal/endpoints/test_rpc_api_endpoint.py", "tests/api_internal/test_internal_api_call.py", "tests/serialization/test_serializ...
AIP-44 Implement conversion to Pydantic-ORM objects in Internal API
null
https://github.com/apache/airflow/issues/30240
https://github.com/apache/airflow/pull/30282
7aca81ceaa6cb640dff9c5d7212adc4aeb078a2f
41c8e58deec2895b0a04879fcde5444b170e679e
2023-03-22T15:26:50Z
python
2023-04-05T08:54:00Z
closed
apache/airflow
https://github.com/apache/airflow
30,229
["docs/apache-airflow/howto/operator/python.rst"]
Update Python operator how-to with @task.sensor example
### Body The current [how-to documentation for the `PythonSensor`](https://airflow.apache.org/docs/apache-airflow/stable/howto/operator/python.html#pythonsensor) does not include any references to the existing `@task.sensor` TaskFlow decorator. It would be nice to see how uses together in this doc. ### Committer - [...
https://github.com/apache/airflow/issues/30229
https://github.com/apache/airflow/pull/30344
4e4e563d3fc68d1becdc1fc5ec1d1f41f6c24dd3
2a2ccfc27c3d40caa217ad8f6f0ba0d394ac2806
2023-03-22T01:19:01Z
python
2023-04-11T09:12:52Z
closed
apache/airflow
https://github.com/apache/airflow
30,225
["airflow/decorators/base.py", "airflow/decorators/setup_teardown.py", "airflow/models/baseoperator.py", "airflow/utils/setup_teardown.py", "airflow/utils/task_group.py", "tests/decorators/test_setup_teardown.py", "tests/serialization/test_dag_serialization.py", "tests/utils/test_setup_teardown.py"]
Ensure setup/teardown tasks can be reused/works with task.override
Ensure that this works: ```python @setup def mytask(): print("I am a setup task") with dag_maker() as dag: mytask.override(task_id='newtask') assert len(dag.task_group.children) == 1 setup_task = dag.task_group.children["newtask"] assert setup_task._is_setup ``` and teardown also works
https://github.com/apache/airflow/issues/30225
https://github.com/apache/airflow/pull/30342
28f73e42721bba5c5ad40bb547be9c057ca81030
c76555930aee9692d2a839b9c7b9e2220717b8a0
2023-03-21T21:01:26Z
python
2023-03-28T18:15:07Z
closed
apache/airflow
https://github.com/apache/airflow
30,220
["airflow/models/dag.py", "airflow/www/static/js/api/useMarkFailedTask.ts", "airflow/www/static/js/api/useMarkSuccessTask.ts", "airflow/www/static/js/api/useMarkTaskDryRun.ts", "airflow/www/static/js/dag/details/index.tsx", "airflow/www/static/js/dag/details/taskInstance/taskActions/MarkInstanceAs.tsx", "airflow/www/vi...
set tasks as successful/failed at their task-group level.
### Description Ability to clear or mark task groups as success/failure and have that propagate to the tasks within that task group. Sometimes there is a need to adjust the status of tasks within a task group, which can get unwieldy depending on the number of tasks in that task group. A great quality of life upgrade, ...
https://github.com/apache/airflow/issues/30220
https://github.com/apache/airflow/pull/30478
decaaa3df2b3ef0124366033346dc21d62cff057
1132da19e5a7d38bef98be0b1f6c61e2c0634bf9
2023-03-21T18:06:34Z
python
2023-04-27T16:10:28Z
closed
apache/airflow
https://github.com/apache/airflow
30,196
["airflow/www/utils.py", "airflow/www/views.py"]
delete dag run times out
### Apache Airflow version 2.5.2 ### What happened when trying to delete a dag run with many tasks (>1000) the operation times out and the dag run is not deleted. ### What you think should happen instead _No response_ ### How to reproduce attempt to delete a dag run that contains >1000 tasks (in my case 10k) us...
https://github.com/apache/airflow/issues/30196
https://github.com/apache/airflow/pull/30330
a1b99fe5364977739b7d8f22a880eeb9d781958b
4e4e563d3fc68d1becdc1fc5ec1d1f41f6c24dd3
2023-03-20T11:27:46Z
python
2023-04-11T07:58:08Z
closed
apache/airflow
https://github.com/apache/airflow
30,169
["airflow/providers/google/cloud/hooks/looker.py", "tests/providers/google/cloud/hooks/test_looker.py"]
Potential issue with use of serialize in Looker SDK
### Apache Airflow Provider(s) google ### Versions of Apache Airflow Providers apache-airflow-providers-common-sql==1.3.4 apache-airflow-providers-ftp==3.3.1 apache-airflow-providers-google==8.11.0 apache-airflow-providers-http==4.2.0 apache-airflow-providers-imap==3.1.1 apache-airflow-providers-sqlite==3...
https://github.com/apache/airflow/issues/30169
https://github.com/apache/airflow/pull/34678
3623b77d22077b4f78863952928560833bfba2f4
562b98a6222912d3a3d859ca3881af3f768ba7b5
2023-03-17T18:50:15Z
python
2023-10-02T20:31:07Z
closed
apache/airflow
https://github.com/apache/airflow
30,167
["airflow/providers/ssh/hooks/ssh.py", "airflow/providers/ssh/operators/ssh.py", "tests/providers/ssh/hooks/test_ssh.py", "tests/providers/ssh/operators/test_ssh.py"]
SSHOperator - Allow specific command timeout
### Description Following #29282, command timeout is set at the `SSHHook` level while it used to be able to set at the `SSHOperator` level. I will work on a PR as soon as i can. ### Use case/motivation Ideally, i think we could have a default value set on `SSHHook`, but with the possibility of overriding it at th...
https://github.com/apache/airflow/issues/30167
https://github.com/apache/airflow/pull/30190
2a42cb46af66c7d6a95a718726cb9206258a0c14
fe727f985b1053b838433b817458517c0c0f2480
2023-03-17T15:56:30Z
python
2023-03-21T20:32:15Z
closed
apache/airflow
https://github.com/apache/airflow
30,153
["airflow/providers/neo4j/hooks/neo4j.py", "tests/providers/neo4j/hooks/test_neo4j.py"]
Issue with Neo4j provider using some schemes
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened Hi, I've run into some issues when using the neo4j operator. I've tried running a simple query and got an exception from the driver itself. **Using: Airflow 2.2.2** ### What you think should happen instead The exception...
https://github.com/apache/airflow/issues/30153
https://github.com/apache/airflow/pull/30418
93a5422c5677a42b3329c329d65ff2b38b1348c2
cd458426c66aca201e43506c950ee68c2f6c3a0a
2023-03-16T19:47:42Z
python
2023-04-21T22:01:31Z
closed
apache/airflow
https://github.com/apache/airflow
30,124
["airflow/models/taskinstance.py", "airflow/utils/state.py", "tests/api_connexion/endpoints/test_dag_run_endpoint.py", "tests/models/test_cleartasks.py", "tests/models/test_dagrun.py"]
DagRun's start_date updated when user clears task of the running Dagrun
### Apache Airflow version 2.5.1 ### What happened DagRun state and start_date are reset if somebody is clearing a task of the running DagRun. ### What you think should happen instead I think we should not reset DagRun `state` and `start_date` in it's in the running or queued states because it doesn't ma...
https://github.com/apache/airflow/issues/30124
https://github.com/apache/airflow/pull/30125
0133f6806dbfb60b84b5bea4ce0daf073c246d52
070ecbd87c5ac067418b2814f554555da0a4f30c
2023-03-15T14:26:30Z
python
2023-04-26T15:27:48Z
closed
apache/airflow
https://github.com/apache/airflow
30,089
["airflow/www/views.py", "tests/www/views/test_views_rendered.py"]
Connection password values appearing unmasked in the "Task Instance Details" -> "Environment" field
### Apache Airflow version Airflow 2.5.1 ### What happened Connection password values appearing in the "Task Instance Details" -> "Task Attributes" -> environment field. We are setting environment variables for the docker_operator with values from the password field in a connection. The values from the...
https://github.com/apache/airflow/issues/30089
https://github.com/apache/airflow/pull/31125
db359ee2375dd7208583aee09b9eae00f1eed1f1
ffe3a68f9ada2d9d35333d6a32eac2b6ac9c70d6
2023-03-14T04:35:49Z
python
2023-05-08T14:59:58Z
closed
apache/airflow
https://github.com/apache/airflow
30,075
["airflow/api_connexion/openapi/v1.yaml"]
Unable to set DagRun state in create Dagrun endpoint ("Property is read-only - 'state'")
### Apache Airflow version main (development) ### What happened While working on another change I noticed that the example [POST from the API docs](https://airflow.apache.org/docs/apache-airflow/stable/stable-rest-api-ref.html#operation/post_dag_run) actually leads to a request Error: ``` curl -X POST -H "Cooki...
https://github.com/apache/airflow/issues/30075
https://github.com/apache/airflow/pull/30149
f01140141f1fe51b6ee1eba5b02ab7516a67c9c7
e01c14661a4ec4bee3a2066ac1323fbd8a4386f1
2023-03-13T17:28:20Z
python
2023-03-21T18:26:51Z
closed
apache/airflow
https://github.com/apache/airflow
30,042
["airflow/www/utils.py", "airflow/www/views.py"]
Search/filter by note in List Dag Run
### Description Going to Airflow web UI, Browse>DAG Run displays the list of runs, but there is no way to search or filter based on the text in the "Note" column. ### Use case/motivation It is possible to do a free text search for the "Run Id" field. The Note field may contain pieces of information that may be relev...
https://github.com/apache/airflow/issues/30042
https://github.com/apache/airflow/pull/31455
f00c131cbf5b2c19c817d1a1945326b80f8c79e7
5794393c95156097095e6fbf76d7faeb6ec08072
2023-03-11T14:16:02Z
python
2023-05-25T18:17:15Z
closed
apache/airflow
https://github.com/apache/airflow
29,980
["airflow/providers/microsoft/azure/hooks/data_lake.py"]
ADLS Gen2 Hook incorrectly forms account URL when using Active Directory authentication method (Azure Data Lake Storage V2)
### Apache Airflow Provider(s) microsoft-azure ### Versions of Apache Airflow Providers apache-airflow-providers-microsoft-azure 5.2.1 ### Apache Airflow version 2.5.1 ### Operating System Ubuntu 18.04 ### Deployment Official Apache Airflow Helm Chart ### Deployment details _No response_ ### What happened ...
https://github.com/apache/airflow/issues/29980
https://github.com/apache/airflow/pull/29981
def1f89e702d401f67a94f34a01f6a4806ea92e6
008f52444a84ceaa2de7c2166b8f253f55ca8c21
2023-03-08T15:42:36Z
python
2023-03-10T12:11:28Z
closed
apache/airflow
https://github.com/apache/airflow
29,967
["chart/dockerfiles/pgbouncer-exporter/build_and_push.sh", "chart/dockerfiles/pgbouncer/build_and_push.sh", "chart/newsfragments/30054.significant.rst"]
Build our supporting images for chart in multi-platform versions
### Body The supporting images of ours are built using one platform only but they could be multiplatform. The scripts to build those should be updated to support multi-platform builds. ### Committer - [X] I acknowledge that I am a maintainer/committer of the Apache Airflow project.
https://github.com/apache/airflow/issues/29967
https://github.com/apache/airflow/pull/30054
5a3be7256b2a848524d3635d7907b6829a583101
39cfc67cad56afa3b2434bc8e60bcd0676d41fc1
2023-03-08T00:22:45Z
python
2023-03-15T22:19:52Z
closed
apache/airflow
https://github.com/apache/airflow
29,959
["airflow/jobs/local_task_job_runner.py", "airflow/jobs/scheduler_job_runner.py", "airflow/models/dagrun.py", "airflow/models/taskinstance.py", "airflow/serialization/pydantic/job.py"]
expand dynamic mapped tasks in batches
### Description expanding tasks in batches to allow mapped tasks spawn more than 1024 processes. ### Use case/motivation Maximum length of a list is limited to 1024 by `max_map_length (AIRFLOW__CORE__MAX_MAP_LENGTH)`. during scheduling of the new tasks, an UPDATE query is ran that tries to set all the new tas...
https://github.com/apache/airflow/issues/29959
https://github.com/apache/airflow/pull/30372
5f2628d36cb8481ee21bd79ac184fd8fdce3e47d
ed39b6fab7a241e2bddc49044c272c5f225d6692
2023-03-07T16:12:04Z
python
2023-04-22T19:10:56Z
closed
apache/airflow
https://github.com/apache/airflow
29,957
["chart/templates/scheduler/scheduler-deployment.yaml", "chart/templates/webserver/webserver-deployment.yaml", "chart/values.schema.json", "chart/values.yaml", "tests/charts/test_scheduler.py", "tests/charts/test_webserver.py"]
hostAliases for scheduler and webserver
### Description I am not sure why this PR was not merged (https://github.com/apache/airflow/pull/23558) but I think it would be great to add hostAliases not just to the workers, but the scheduler and webserver too. ### Use case/motivation Be able to modify /etc/hosts in webserver and scheduler. ### Related issues ...
https://github.com/apache/airflow/issues/29957
https://github.com/apache/airflow/pull/30051
5c15b23023be59a87355c41ab23a46315cca21a5
f07d300c4c78fa1b2becb4653db8d25b011ea273
2023-03-07T15:25:15Z
python
2023-03-12T14:22:05Z
closed
apache/airflow
https://github.com/apache/airflow
29,939
["airflow/providers/amazon/aws/links/emr.py", "airflow/providers/amazon/aws/operators/emr.py", "airflow/providers/amazon/aws/sensors/emr.py", "tests/providers/amazon/aws/operators/test_emr_add_steps.py", "tests/providers/amazon/aws/operators/test_emr_create_job_flow.py", "tests/providers/amazon/aws/operators/test_emr_m...
AWS EMR Operators: Add Log URI in task logs to speed up debugging
### Description Airflow is widely used to launch, interact and submit jobs on AWS EMR Clusters. Existing EMR operators do not provide links to the EMR logs (Job Flow/Step logs), as a result in case of failures the users need to switch to EMR Console or go to AWS S3 console to locate the logs for EMR Jobs and Steps usi...
https://github.com/apache/airflow/issues/29939
https://github.com/apache/airflow/pull/31032
6c92efbe8b99e172fe3b585114e1924c0bb2f26b
2d5166f9829835bdfd6479aa789c8a27147288d6
2023-03-06T18:03:55Z
python
2023-05-03T23:18:02Z
closed
apache/airflow
https://github.com/apache/airflow
29,912
["airflow/providers/google/cloud/transfers/bigquery_to_gcs.py", "tests/providers/google/cloud/transfers/test_bigquery_to_gcs.py"]
BigQueryToGCSOperator does not wait for completion
### Apache Airflow Provider(s) google ### Versions of Apache Airflow Providers apache-airflow-providers-google==7.0.0 ### Apache Airflow version 2.3.2 ### Operating System Debian GNU/Linux ### Deployment Official Apache Airflow Helm Chart ### Deployment details _No response_ ### What happened [Deferrable m...
https://github.com/apache/airflow/issues/29912
https://github.com/apache/airflow/pull/29925
30b2e6c185305a56f9fd43683f1176f01fe4e3f6
464ab1b7caa78637975008fcbb049d5b52a8b005
2023-03-03T23:29:15Z
python
2023-03-05T10:40:38Z
closed
apache/airflow
https://github.com/apache/airflow
29,903
["airflow/models/baseoperator.py", "tests/models/test_mappedoperator.py"]
Task-level retries overrides from the DAG-level default args are not respected when using `partial`
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened When running a DAG that is structured like: ``` @dag{dag_id="my_dag", default_args={"retries":0"}} def dag(): op = MyOperator.partial(task_id="my_task", retries=3).expand(...) ``` The following test fails: ``` ...
https://github.com/apache/airflow/issues/29903
https://github.com/apache/airflow/pull/29913
57c09e59ee9273ff64cd4a85b020a4df9b1d9eca
f01051a75e217d5f20394b8c890425915383101f
2023-03-03T19:22:23Z
python
2023-04-14T12:16:11Z
closed
apache/airflow
https://github.com/apache/airflow
29,875
["airflow/cli/cli_parser.py", "airflow/cli/commands/connection_command.py", "docs/apache-airflow/howto/connection.rst", "tests/cli/commands/test_connection_command.py"]
Airflow Connection Testing Using Airflow CLI
### Description Airflow Connection testing using airflow CLI would be very useful , where users can quick add test function to test connection in their applications. It will benefit CLI user to create and test new connections right from instance and reduce time on troubleshooting any connection issue. ### Use case/...
https://github.com/apache/airflow/issues/29875
https://github.com/apache/airflow/pull/29892
a3d59c8c759582c27f5a234ffd4c33a9daeb22a9
d2e5b097e6251e31fb4c9bb5bf16dc9c77b56f75
2023-03-02T14:13:55Z
python
2023-03-09T09:26:10Z
closed
apache/airflow
https://github.com/apache/airflow
29,858
["airflow/www/package.json", "airflow/www/static/js/api/index.ts", "airflow/www/static/js/api/useDag.ts", "airflow/www/static/js/api/useDagCode.ts", "airflow/www/static/js/dag/details/dagCode/CodeBlock.tsx", "airflow/www/static/js/dag/details/dagCode/index.tsx", "airflow/www/static/js/dag/details/index.tsx", "airflow/w...
Migrate DAG Code page to Grid Details
- [ ] Use REST API to render DAG Code in the grid view as a tab when a user has no runs/tasks selected - [ ] Redirect all urls to new code - [ ] delete the old code view
https://github.com/apache/airflow/issues/29858
https://github.com/apache/airflow/pull/31113
3363004450355582712272924fac551dc1f7bd56
4beb89965c4ee05498734aa86af2df7ee27e9a51
2023-03-02T00:38:49Z
python
2023-05-17T16:27:06Z
closed
apache/airflow
https://github.com/apache/airflow
29,843
["airflow/models/taskinstance.py", "tests/www/views/test_views.py"]
The "Try Number" filter under task instances search is comparing integer with non-integer object
### Apache Airflow version 2.5.1 ### What happened The `Try Number` filter is comparing the given integer with an instance of a "property" object * screenshots ![2023-03-01_11-30](https://user-images.githubusercontent.com/14293802/222210209-fc17c634-4005-4f3d-bee1-30ed23403e71.png) ![2023-03-01_11-31](ht...
https://github.com/apache/airflow/issues/29843
https://github.com/apache/airflow/pull/29850
00a2c793c7985f8165c2bef9106fc81ee66e07bb
a3c9902bc606f0c067a45f09e9d3d152058918e9
2023-03-01T17:45:26Z
python
2023-03-10T12:01:15Z
closed
apache/airflow
https://github.com/apache/airflow
29,841
["setup.cfg"]
high memory leak, cannot start even webserver
### Apache Airflow version 2.5.1 ### What happened I'd used airflow 2.3.1 and everything was fine. Then I decided to move to airflow 2.5.1. I can't start even webserver, airflow on my laptop consumes the entire memory (32Gb) and OOM killer comes. I investigated a bit. So it starts with airflow 2.3.4. Only usin...
https://github.com/apache/airflow/issues/29841
https://github.com/apache/airflow/pull/29916
864ff2e3ce185dfa3df0509a4bd3c6b5169e907f
c8cc49af2d011f048ebea8a6559ddd5fca00f378
2023-03-01T15:36:01Z
python
2023-03-04T15:27:20Z
closed
apache/airflow
https://github.com/apache/airflow
29,836
["airflow/www/forms.py", "airflow/www/validators.py", "tests/www/test_validators.py", "tests/www/views/test_views_connection.py"]
Restrict allowed characters in connection ids
### Description I bumped into a bug where a connection id was suffixed with a whitespace e.g. "myconn ". When referencing the connection id "myconn" (without whitespace), you get a connection not found error. To avoid such human errors, I suggest restricting the characters allowed for connection ids. Some sugg...
https://github.com/apache/airflow/issues/29836
https://github.com/apache/airflow/pull/31140
85482e86f5f93015487938acfb0cca368059e7e3
5cb8ef80a0bd84651fb660c552563766d8ec0ea1
2023-03-01T11:58:40Z
python
2023-05-12T10:25:37Z
closed
apache/airflow
https://github.com/apache/airflow
29,781
["airflow/providers/sftp/hooks/sftp.py", "airflow/providers/sftp/sensors/sftp.py", "tests/providers/sftp/hooks/test_sftp.py", "tests/providers/sftp/sensors/test_sftp.py"]
newer_than and file_pattern don't work well together in SFTPSensor
### Apache Airflow Provider(s) sftp ### Versions of Apache Airflow Providers 4.2.3 ### Apache Airflow version 2.5.1 ### Operating System macOS Ventura 13.2.1 ### Deployment Astronomer ### Deployment details _No response_ ### What happened I wanted to use `file_pattern` and `newer_than` in `SFTPSensor` to f...
https://github.com/apache/airflow/issues/29781
https://github.com/apache/airflow/pull/29794
60d98a1bc2d54787fcaad5edac36ecfa484fb42b
9357c81828626754c990c3e8192880511a510544
2023-02-27T12:25:27Z
python
2023-02-28T05:45:59Z
closed
apache/airflow
https://github.com/apache/airflow
29,754
["airflow/example_dags/example_dynamic_task_mapping_with_no_taskflow_operators.py", "docs/apache-airflow/authoring-and-scheduling/dynamic-task-mapping.rst", "tests/serialization/test_dag_serialization.py", "tests/www/views/test_views_acl.py"]
Add classic operator example for dynamic task mapping "reduce" task
### What do you see as an issue? The [documentation for Dynamic Task Mapping](https://airflow.apache.org/docs/apache-airflow/stable/authoring-and-scheduling/dynamic-task-mapping.html#simple-mapping ) does not include an example of a "reduce" task (e.g. `sum_it` in the [examples](https://airflow.apache.org/docs/apac...
https://github.com/apache/airflow/issues/29754
https://github.com/apache/airflow/pull/29762
c9607d44de5a3c9674a923a601fc444ff957ac7e
4d4c2b9d8b5de4bf03524acf01a298c162e1d9e4
2023-02-24T23:35:25Z
python
2023-05-31T05:47:46Z
closed
apache/airflow
https://github.com/apache/airflow
29,746
["airflow/providers/databricks/operators/databricks.py", "tests/providers/databricks/operators/test_databricks.py"]
DatabricksSubmitRunOperator does not support passing output of another task to `base_parameters`
### Apache Airflow Provider(s) databricks ### Versions of Apache Airflow Providers apache-airflow-providers-databricks==4.0.0 ### Apache Airflow version 2.4.3 ### Operating System MAC OS ### Deployment Virtualenv installation ### Deployment details The issue is consistent across multiple Airflow deployments ...
https://github.com/apache/airflow/issues/29746
https://github.com/apache/airflow/pull/29840
c95184e8bc0f974ea8d2d51cbe3ca67e5f4516ac
c405ecb63e352c7a29dd39f6f249ba121bae7413
2023-02-24T15:50:14Z
python
2023-03-07T15:03:17Z
closed
apache/airflow
https://github.com/apache/airflow
29,733
["airflow/providers/databricks/hooks/databricks.py", "airflow/providers/databricks/operators/databricks.py", "airflow/providers/databricks/provider.yaml", "docs/apache-airflow-providers-databricks/operators/jobs_create.rst", "tests/providers/databricks/hooks/test_databricks.py", "tests/providers/databricks/operators/te...
Databricks create/reset then run-now
### Description Allow an Airflow DAG to define a Databricks job with the `api/2.1/jobs/create` (or `api/2.1/jobs/reset`) endpoint then run that same job with the `api/2.1/jobs/run-now` endpoint. This would give similar capabilities as the DatabricksSubmitRun operator, but the `api/2.1/jobs/create` endpoint supports ...
https://github.com/apache/airflow/issues/29733
https://github.com/apache/airflow/pull/35156
da2fdbb7609f7c0e8dd1d1fd9efaec31bb937fe8
a8784e3c352aafec697d3778eafcbbd455b7ba1d
2023-02-23T21:01:27Z
python
2023-10-27T18:52:26Z
closed
apache/airflow
https://github.com/apache/airflow
29,712
["airflow/providers/amazon/aws/hooks/emr.py", "tests/providers/amazon/aws/hooks/test_emr.py"]
EMRHook.get_cluster_id_by_name() doesn't use pagination
### Apache Airflow version 2.5.1 ### What happened When using EMRHook.get_cluster_id_by_name or any any operator that depends on it (e.g. EMRAddStepsOperator), if the results of the ListClusters API call is paginated (e.g. if your account has more than 50 clusters in the current region), and the desired cluster is i...
https://github.com/apache/airflow/issues/29712
https://github.com/apache/airflow/pull/29732
607068f4f0d259b638743db5b101660da1b43d11
9662fd8cc05f69f51ca94b495b14f907aed0d936
2023-02-23T00:39:37Z
python
2023-05-01T18:45:02Z
closed
apache/airflow
https://github.com/apache/airflow
29,687
["airflow/models/renderedtifields.py"]
Deadlock when airflow try to update 'k8s_pod_yaml' in 'rendered_task_instance_fields' table
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened **Airflow 2.4.2** We run into a problem, where HttpSensor has an error because of deadlock. We are running 3 different dags with 12 max_active_runs, that call api and check for response if it should reshedule it or go ...
https://github.com/apache/airflow/issues/29687
https://github.com/apache/airflow/pull/32341
e53320d62030a53c6ffe896434bcf0fc85803f31
c8a3c112a7bae345d37bb8b90d68c8d6ff2ef8fc
2023-02-22T09:00:28Z
python
2023-07-05T11:28:16Z
closed
apache/airflow
https://github.com/apache/airflow
29,671
["tests/providers/openlineage/extractors/test_default_extractor.py"]
Adapt OpenLineage default extractor to properly accept all OL implementation
### Body Adapt default extractor to accept any valid type returned from Operators `get_openlineage_facets_*` method. This needs to ensure compatibility with operators made with external extractors for current openlineage-airflow integration. ### Committer - [X] I acknowledge that I am a maintainer/committer of t...
https://github.com/apache/airflow/issues/29671
https://github.com/apache/airflow/pull/31381
89bed231db4807826441930661d79520250f3075
4e73e47d546bf3fd230f93056d01e12f92274433
2023-02-21T18:43:14Z
python
2023-06-13T19:09:28Z
closed
apache/airflow
https://github.com/apache/airflow
29,666
["airflow/providers/hashicorp/_internal_client/vault_client.py", "airflow/providers/hashicorp/secrets/vault.py", "tests/providers/hashicorp/_internal_client/test_vault_client.py", "tests/providers/hashicorp/secrets/test_vault.py"]
Multiple Mount Points for Hashicorp Vault Back-end
### Description Support mounting to multiple namespaces with the Hashicorp Vault Secrets Back-end ### Use case/motivation As a data engineer I wish to utilize secrets stored in multiple mount paths (to support connecting to multiple namespaces) without having to mount to a higher up namespace. ### Related issues ...
https://github.com/apache/airflow/issues/29666
https://github.com/apache/airflow/pull/29734
d0783744fcae40b0b6b2e208a555ea5fd9124dfb
dff425bc3d92697bb447010aa9f3b56519a59f1e
2023-02-21T16:44:08Z
python
2023-02-24T09:48:01Z
closed
apache/airflow
https://github.com/apache/airflow
29,663
["airflow/config_templates/config.yml", "airflow/config_templates/default_airflow.cfg", "airflow/stats.py", "tests/core/test_stats.py"]
Option to Disable High Cardinality Metrics on Statsd
### Description With recent PRs enabling tags-support on Statsd metrics, we gained a deeper understanding into the issue of publishing high cardinality metrics. Through this issue, I hope to facilitate the discussion in categorizing metric cardinality of Airflow specific events and tags, and finding a way to disable h...
https://github.com/apache/airflow/issues/29663
https://github.com/apache/airflow/pull/29881
464ab1b7caa78637975008fcbb049d5b52a8b005
86cd79ffa76d4e4d4abe3fe829d7797852a713a5
2023-02-21T16:12:58Z
python
2023-03-06T06:20:05Z
closed
apache/airflow
https://github.com/apache/airflow
29,662
["airflow/www/decorators.py"]
Audit Log is unclear when using Azure AD login
### Apache Airflow version 2.5.1 ### What happened We're using an Azure OAUTH based login in our Airflow implementation, and everything works great. This is more of a visual problem than an actual bug. In the Audit logs, the `owner` key is mapped to the username, which in most cases is airflow. But, in situations...
https://github.com/apache/airflow/issues/29662
https://github.com/apache/airflow/pull/30185
0b3b6704cb12a3b8f22da79d80b3db85528418b7
a03f6ccb153f9b95f624d5bc3346f315ca3f0211
2023-02-21T15:10:30Z
python
2023-05-17T20:15:55Z
closed
apache/airflow
https://github.com/apache/airflow
29,621
["chart/templates/dags-persistent-volume-claim.yaml", "chart/values.yaml"]
Fix adding annotations for dag persistence PVC
### Official Helm Chart version 1.8.0 (latest released) ### Apache Airflow version 2.5.0 ### Kubernetes Version v1.25.4 ### Helm Chart configuration The dags persistence section doesn't have a default value for annotations and the usage looks like: ``` annotations: {{- if .Values.dags.persistence.annot...
https://github.com/apache/airflow/issues/29621
https://github.com/apache/airflow/pull/29622
5835b08e8bc3e11f4f98745266d10bbae510b258
901774718c5d7ff7f5ddc6f916701d281bb60a4b
2023-02-20T03:20:25Z
python
2023-02-20T22:58:03Z
closed
apache/airflow
https://github.com/apache/airflow
29,585
["airflow/providers/docker/decorators/docker.py", "tests/providers/docker/decorators/test_docker.py"]
template_fields not working in the decorator `task.docker`
### Apache Airflow Provider(s) docker ### Versions of Apache Airflow Providers apache-airflow-providers-docker 3.4.0 ### Apache Airflow version 2.5.1 ### Operating System Linux ### Deployment Docker-Compose ### Deployment details _No response_ ### What happened The templa...
https://github.com/apache/airflow/issues/29585
https://github.com/apache/airflow/pull/29586
792416d4ad495f1e5562e6170f73f4d8f1fa2eff
7bd87e75def1855d8f5b91e9ab1ffbbf416709ec
2023-02-17T09:32:11Z
python
2023-02-17T17:51:57Z
closed
apache/airflow
https://github.com/apache/airflow
29,578
["airflow/jobs/scheduler_job_runner.py", "docs/apache-airflow/administration-and-deployment/logging-monitoring/metrics.rst", "newsfragments/30374.significant.rst"]
scheduler.tasks.running metric is always 0
### Apache Airflow version 2.5.1 ### What happened I'd expect the `scheduler.tasks.running` metric to represent the number of running tasks, but it is always zero. It appears that #10956 broke this when it removed [the line that increments `num_tasks_in_executor`](https://github.com/apache/airflow/pull/10956/files#d...
https://github.com/apache/airflow/issues/29578
https://github.com/apache/airflow/pull/30374
d8af20f064b8d8abc9da1f560b2d7e1ac7dd1cc1
cce9b2217b86a88daaea25766d0724862577cc6c
2023-02-16T17:59:47Z
python
2023-04-13T11:04:12Z
closed
apache/airflow
https://github.com/apache/airflow
29,538
["airflow/providers/google/CHANGELOG.rst", "airflow/providers/google/marketing_platform/hooks/campaign_manager.py", "airflow/providers/google/marketing_platform/operators/campaign_manager.py", "airflow/providers/google/marketing_platform/sensors/campaign_manager.py", "airflow/providers/google/provider.yaml", "docs/apac...
GoogleCampaignManagerReportSensor not working correctly on API Version V4
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened Hello, My organization has been running Airflow 2.3.4 and we have run into a problem in regard to the Google Campaign Manager Report Sensor. The purpose of this sensor is to check if a report has finished processing and is...
https://github.com/apache/airflow/issues/29538
https://github.com/apache/airflow/pull/30598
5b42aa3b8d0ec069683e22c2cb3b8e8e6e5fee1c
da2749cae56d6e0da322695b3286acd9393052c8
2023-02-14T15:13:33Z
python
2023-04-15T13:34:31Z
closed
apache/airflow
https://github.com/apache/airflow
29,537
["airflow/cli/commands/config_command.py", "tests/cli/commands/test_config_command.py"]
Docker image fails to start if celery config section is not defined
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened Using Airflow `2.3.4` We removed any config values we did not explicitly set from `airflow.cfg`. This was to make future upgrades less involved, as we could only compare configuration values we explicitly set, rather...
https://github.com/apache/airflow/issues/29537
https://github.com/apache/airflow/pull/29541
84b13e067f7b0c71086a42957bb5cf1d6dc86d1d
06d45f0f2c8a71c211e22cf3792cc873f770e692
2023-02-14T14:58:55Z
python
2023-02-15T01:41:37Z
closed
apache/airflow
https://github.com/apache/airflow
29,532
["airflow/api_internal/endpoints/rpc_api_endpoint.py", "airflow/models/dag.py", "airflow/models/dagwarning.py"]
AIP-44 Migrate DagWarning.purge_inactive_dag_warnings to Internal API
Used in https://github.com/mhenc/airflow/blob/master/airflow/dag_processing/manager.py#L613 should be straighforward
https://github.com/apache/airflow/issues/29532
https://github.com/apache/airflow/pull/29534
289ae47f43674ae10b6a9948665a59274826e2a5
50b30e5b92808e91ad9b6b05189f560d58dd8152
2023-02-14T13:13:04Z
python
2023-02-15T00:13:44Z
closed
apache/airflow
https://github.com/apache/airflow
29,531
["airflow/ti_deps/deps/prev_dagrun_dep.py", "tests/ti_deps/deps/test_prev_dagrun_dep.py"]
Dynamic task mapping does not always create mapped tasks
### Apache Airflow version 2.5.1 ### What happened Same problem as https://github.com/apache/airflow/issues/28296, but seems to happen nondeterministically, and still happens when ignoring `depends_on_past=True`. I've got a task that retrieves some filenames, which then creates dynamically mapped tasks to move th...
https://github.com/apache/airflow/issues/29531
https://github.com/apache/airflow/pull/32397
685328e3572043fba6db432edcaacf8d06cf88d0
73bc49adb17957e5bb8dee357c04534c6b41f9dd
2023-02-14T12:47:12Z
python
2023-07-23T23:53:52Z
closed
apache/airflow
https://github.com/apache/airflow
29,515
["airflow/www/templates/airflow/task.html"]
Hide non-used docs attributes from Task Instance Detail
### Description Inside a BashOperator, I added a markdown snippet of documentation for the "Task Instance Details" of my Airflow nodes. Now I can see my markdown, defined by the attribute "doc_md", but also Attribute: bash_command Attribute: doc Attribute: doc_json Attribute: doc_rst Attribute: doc_yaml I t...
https://github.com/apache/airflow/issues/29515
https://github.com/apache/airflow/pull/29545
655ffb835eb4c5343c3f2b4d37b352248f2768ef
f2f6099c5a2f3613dce0cc434a95a9479d748cf5
2023-02-13T22:10:31Z
python
2023-02-16T14:17:49Z
closed
apache/airflow
https://github.com/apache/airflow
29,435
["airflow/decorators/base.py", "tests/decorators/test_python.py"]
TaskFlow API `multiple_outputs` inferral causes import errors when using TYPE_CHECKING
### Apache Airflow version 2.5.1 ### What happened When using the TaskFlow API, I like to generally keep a good practice of adding type annotations in the TaskFlow functions so others reading the DAG and task code have better context around inputs/outputs, keep imports solely used for typing behind `typing.TYP...
https://github.com/apache/airflow/issues/29435
https://github.com/apache/airflow/pull/29445
f9e9d23457cba5d3e18b5bdb7b65ecc63735b65b
b1306065054b98a63c6d3ab17c84d42c2d52809a
2023-02-09T03:55:48Z
python
2023-02-12T07:45:26Z
closed
apache/airflow
https://github.com/apache/airflow
29,432
["airflow/models/mappedoperator.py", "tests/models/test_mappedoperator.py", "tests/test_utils/mock_operators.py"]
Jinja templating doesn't work with container_resources when using dymanic task mapping with Kubernetes Pod Operator
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened Google Cloud Composer Version - 2.1.5 Airflow Version - 2.4.3 We are trying to use dynamic task mapping with Kubernetes Pod Operator. Our use-case is to return the pod's CPU and memory requirements from a function which i...
https://github.com/apache/airflow/issues/29432
https://github.com/apache/airflow/pull/29451
43443eb539058b7b4756455f76b0e883186d9250
5eefd47771a19dca838c8cce40a4bc5c555e5371
2023-02-08T19:01:33Z
python
2023-02-13T08:48:47Z
closed
apache/airflow
https://github.com/apache/airflow
29,428
["pyproject.toml"]
Require newer version of pypi/setuptools to remove security scan issue (CVE-2022-40897)
### Description Hi. My team is evaluating airflow, so I ran a security scan on it. It is flagging a Medium security issue with pypi/setuptools. See https://nvd.nist.gov/vuln/detail/CVE-2022-40897 for details. Is it possible to require a more recent version? Or perhaps airflow users are not vulnerable to this? ### Use...
https://github.com/apache/airflow/issues/29428
https://github.com/apache/airflow/pull/29465
9c6f83bb6f3e3b57ae0abbe9eb0582fcde265702
41dff9875bce4800495c9132b10a6c8bff900a7c
2023-02-08T15:11:54Z
python
2023-02-11T16:03:14Z
closed
apache/airflow
https://github.com/apache/airflow
29,422
["airflow/providers/amazon/aws/transfers/dynamodb_to_s3.py", "tests/providers/amazon/aws/transfers/test_dynamodb_to_s3.py"]
Multiple AWS connections support in DynamoDBToS3Operator
### Description I want to add support of a separate AWS connection for DynamoDB in `DynamoDBToS3Operator` in `apache-airflow-providers-amazon` via `aws_dynamodb_conn_id` constructor argument. ### Use case/motivation Sometimes DynamoDB tables and S3 buckets live in different AWS accounts so to access both r...
https://github.com/apache/airflow/issues/29422
https://github.com/apache/airflow/pull/29452
8691c4f98c6cd6d96e87737158a9be0f6a04b9ad
3780b01fc46385809423bec9ef858be5be64b703
2023-02-08T08:58:26Z
python
2023-03-09T22:02:18Z
closed
apache/airflow
https://github.com/apache/airflow
29,405
["airflow/api_connexion/openapi/v1.yaml", "airflow/www/static/js/types/api-generated.ts"]
Add pagination to get_log in the rest API
### Description Right now, the `get_log` endpoint at `/dags/{dag_id}/dagRuns/{dag_run_id}/taskInstances/{task_id}/logs/{task_try_number}` does not have any pagination and therefore we can be forced to load extremely large text blocks, which makes everything slow. (see the workaround fix we needed to do in the UI: http...
https://github.com/apache/airflow/issues/29405
https://github.com/apache/airflow/pull/30729
7d02277ae13b7d1e6cea9e6c8ff0d411100daf77
7d62cbb97e1bc225f09e3cfac440aa422087a8a7
2023-02-07T16:10:57Z
python
2023-04-22T20:49:40Z
closed
apache/airflow
https://github.com/apache/airflow
29,396
["airflow/providers/google/cloud/hooks/bigquery.py", "tests/providers/google/cloud/hooks/test_bigquery.py"]
BigQuery Hook list_rows method missing page_token return value
### Apache Airflow Provider(s) google ### Versions of Apache Airflow Providers apache-airflow-providers-google==7.0.0 But the problem exists in all newer versions. ### Apache Airflow version apache-airflow==2.3.2 ### Operating System Ubuntu 20.04.4 LTS ### Deployment Official Apache Airflo...
https://github.com/apache/airflow/issues/29396
https://github.com/apache/airflow/pull/30543
d9896fd96eb91a684a512a86924a801db53eb945
4703f9a0e589557f5176a6f466ae83fe52644cf6
2023-02-07T02:26:41Z
python
2023-04-08T17:01:57Z
closed
apache/airflow
https://github.com/apache/airflow
29,393
["airflow/providers/amazon/aws/log/s3_task_handler.py", "tests/providers/amazon/aws/log/test_s3_task_handler.py"]
S3TaskHandler continuously returns "*** Falling back to local log" even if log_pos is provided when log not in s3
### Apache Airflow Provider(s) amazon ### Versions of Apache Airflow Providers apache-airflow-providers-amazon==7.1.0 ### Apache Airflow version 2.5.1 ### Operating System Ubuntu 18.04 ### Deployment Official Apache Airflow Helm Chart ### Deployment details _No response_ ### What hap...
https://github.com/apache/airflow/issues/29393
https://github.com/apache/airflow/pull/29708
13098d5c35cf056c3ef08ea98a1970ee1a3e76f8
5e006d743d1ba3781acd8e053642f2367a8e7edc
2023-02-06T20:33:08Z
python
2023-02-23T21:25:39Z
closed
apache/airflow
https://github.com/apache/airflow
29,358
["airflow/models/baseoperator.py", "airflow/models/dag.py", "airflow/models/param.py"]
Cannot use TypedDict object when defining params
### Apache Airflow version 2.5.1 ### What happened Context: I am attempting to use [TypedDict](https://docs.python.org/3/library/typing.html#typing.TypedDict) objects to maintain the keys used in DAG params in a single place, and check for key names across multiple DAGs that use the params. This raises an error wit...
https://github.com/apache/airflow/issues/29358
https://github.com/apache/airflow/pull/29782
b6392ae5fd466fa06ca92c061a0f93272e27a26b
b069df9b0a792beca66b08d873a66d5640ddadb7
2023-02-03T14:40:04Z
python
2023-03-07T21:25:15Z
closed
apache/airflow
https://github.com/apache/airflow
29,329
["airflow/example_dags/example_setup_teardown.py", "airflow/models/abstractoperator.py", "airflow/models/dag.py", "tests/models/test_dag.py", "tests/models/test_dagrun.py"]
Automatically clear setup/teardown when clearing a dependent task
null
https://github.com/apache/airflow/issues/29329
https://github.com/apache/airflow/pull/30271
f4c4b7748655cd11d2c297de38563b2e6b840221
0c2778f348f61f3bf08b840676d681e93a60f54a
2023-02-02T15:44:26Z
python
2023-06-21T13:34:18Z
closed
apache/airflow
https://github.com/apache/airflow
29,325
["airflow/providers/cncf/kubernetes/python_kubernetes_script.py", "airflow/utils/decorators.py", "tests/decorators/test_external_python.py", "tests/decorators/test_python_virtualenv.py", "tests/providers/cncf/kubernetes/decorators/test_kubernetes.py", "tests/providers/docker/decorators/test_docker.py"]
Ensure setup/teardown work on a previously decorated function (eg task.docker)
null
https://github.com/apache/airflow/issues/29325
https://github.com/apache/airflow/pull/30216
3022e2ecbb647bfa0c93fbcd589d0d7431541052
df49ad179bddcdb098b3eccbf9bb6361cfbafc36
2023-02-02T15:43:06Z
python
2023-03-24T17:01:34Z
closed
apache/airflow
https://github.com/apache/airflow
29,323
["airflow/models/serialized_dag.py", "tests/models/test_serialized_dag.py"]
DAG dependencies graph not updating when deleting a DAG
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened ON Airflow 2.4.2 Dag dependencies graph show deleted DAGs that use to have dependencies to currently existing DAGs ### What you think should happen instead Deleted DAGs should not appear on DAG Dependencies ### How to repr...
https://github.com/apache/airflow/issues/29323
https://github.com/apache/airflow/pull/29407
18347d36e67894604436f3ef47d273532683b473
02a2efeae409bddcfedafe273fffc353595815cc
2023-02-02T15:22:37Z
python
2023-02-13T19:25:49Z
closed
apache/airflow
https://github.com/apache/airflow
29,322
["airflow/www/utils.py", "airflow/www/views.py", "tests/www/test_utils.py"]
DAG list, sorting lost when switching page
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened Hi, I'm currently on Airflow 2.4.2 In /home when sorting by DAG/Owner/Next Run and going to the next page the sort resets. This feature only works if I'm looking for last or first, everything in the middle is unreachable. ...
https://github.com/apache/airflow/issues/29322
https://github.com/apache/airflow/pull/29756
c917c9de3db125cac1beb0a58ac81f56830fb9a5
c8cd90fa92c1597300dbbad4366c2bef49ef6390
2023-02-02T15:19:51Z
python
2023-03-02T14:59:43Z
closed
apache/airflow
https://github.com/apache/airflow
29,267
["airflow/example_dags/example_python_decorator.py", "airflow/example_dags/example_python_operator.py", "airflow/example_dags/example_short_circuit_operator.py", "docs/apache-airflow/howto/operator/python.rst", "docs/conf.py", "docs/sphinx_design/static/custom.css", "setup.py", "tests/api_connexion/endpoints/test_task_...
Support tabs in docs
### What do you see as an issue? I suggest supporting tabs in the docs to improve the readability when demonstrating different ways to achieve the same things. **Motivation** We have multiple ways to achieve the same thing in Airflow, for example: - TaskFlow API & "classic" operators - CLI & REST API & API cli...
https://github.com/apache/airflow/issues/29267
https://github.com/apache/airflow/pull/36041
f60d458dc08a5d5fbe5903fffca8f7b03009f49a
58e264c83fed1ca42486302600288230b944ab06
2023-01-31T14:23:42Z
python
2023-12-06T08:44:18Z
closed
apache/airflow
https://github.com/apache/airflow
29,250
["airflow/providers/databricks/hooks/databricks.py", "tests/providers/databricks/hooks/test_databricks.py"]
Repair functionality in DatabricksRunNowOperator
### Description The Databricks jobs 2.1 API has the ability to repair failed or skipped tasks in a Databricks workflow without having to rerun successful tasks for a given workflow run. It would be nice to be able to leverage this functionality via airflow operators. ### Use case/motivation The primary motivat...
https://github.com/apache/airflow/issues/29250
https://github.com/apache/airflow/pull/30786
424fc17d49afd4175826a62aa4fe7aa7c5772143
9bebf85e24e352f9194da2f98e2bc66a5e6b972e
2023-01-30T21:24:49Z
python
2023-04-22T21:21:14Z
closed
apache/airflow
https://github.com/apache/airflow
29,227
["airflow/www/views.py", "tests/www/views/test_views_tasks.py"]
Calendar page doesn't load when using a timedelta DAG schedule
### Apache Airflow version 2.5.1 ### What happened /calendar page give a problem, here is the capture ![屏幕截图 2023-01-30 093116](https://user-images.githubusercontent.com/19165258/215369479-9fc7de5c-f190-460c-9cf7-9ab27d8ac355.png) ### What you think should happen instead _No response_ ### How to reproduc...
https://github.com/apache/airflow/issues/29227
https://github.com/apache/airflow/pull/29454
28126c12fbdd2cac84e0fbcf2212154085aa5ed9
f837c0105c85d777ea18c88a9578eeeeac5f57db
2023-01-30T01:32:44Z
python
2023-02-14T17:06:09Z
closed
apache/airflow
https://github.com/apache/airflow
29,209
["airflow/providers/google/cloud/operators/bigquery_dts.py", "tests/providers/google/cloud/operators/test_bigquery_dts.py"]
BigQueryCreateDataTransferOperator will log AWS credentials when transferring from S3
### Apache Airflow Provider(s) google ### Versions of Apache Airflow Providers [apache-airflow-providers-google 8.6.0](https://airflow.apache.org/docs/apache-airflow-providers-google/8.6.0/) ### Apache Airflow version 2.5.0 ### Operating System Debian GNU/Linux 11 (bullseye) ### Deployment ...
https://github.com/apache/airflow/issues/29209
https://github.com/apache/airflow/pull/29348
3dbcf99d20d47cde0debdd5faf9bd9b2ebde1718
f51742d20b2e53bcd90a19db21e4e12d2a287677
2023-01-28T19:58:00Z
python
2023-02-20T23:06:50Z
closed
apache/airflow
https://github.com/apache/airflow
29,199
["airflow/models/xcom_arg.py", "tests/decorators/test_python.py"]
TaskFlow AirflowSkipException causes downstream step to fail when multiple_outputs is true
### Apache Airflow version 2.5.1 ### What happened Most of our code is based on TaskFlow API and we have many tasks that raise AirflowSkipException (or BranchPythonOperator) on purpose to skip the next downstream task (with trigger_rule = none_failed_min_one_success). And these tasks are expecting a multiple ...
https://github.com/apache/airflow/issues/29199
https://github.com/apache/airflow/pull/32027
14eb1d3116ecef15be7be9a8f9d08757e74f981c
79eac7687cf7c6bcaa4df2b8735efaad79a7fee2
2023-01-27T18:27:43Z
python
2023-06-21T09:55:57Z
closed
apache/airflow
https://github.com/apache/airflow
29,198
["airflow/providers/snowflake/operators/snowflake.py"]
SnowflakeCheckOperator - The conn_id `None` isn't defined
### Apache Airflow Provider(s) snowflake ### Versions of Apache Airflow Providers `apache-airflow-providers-snowflake==4.0.2` ### Apache Airflow version 2.5.1 ### Operating System Debian GNU/Linux 11 (bullseye) ### Deployment Official Apache Airflow Helm Chart ### Deployment details _No response_ ### What h...
https://github.com/apache/airflow/issues/29198
https://github.com/apache/airflow/pull/29211
a72e28d6e1bc6ae3185b8b3971ac9de5724006e6
9b073119d401594b3575c6f7dc4a14520d8ed1d3
2023-01-27T18:24:51Z
python
2023-01-29T08:54:39Z
closed
apache/airflow
https://github.com/apache/airflow
29,197
["airflow/www/templates/airflow/dag.html"]
Trigger DAG w/config raising error from task detail views
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened Version: 2.4.3 (migrated from 2.2.4) Manual UI option "Trigger DAG w/config" raises an error _400 Bad Request - Invalid datetime: None_ from views "Task Instance Details", "Rendered Template", "Log" and "XCom" . Note tha...
https://github.com/apache/airflow/issues/29197
https://github.com/apache/airflow/pull/29212
9b073119d401594b3575c6f7dc4a14520d8ed1d3
7315d6f38caa58e6b19054f3e8a20ed02df16a29
2023-01-27T18:07:01Z
python
2023-01-29T08:56:35Z
closed
apache/airflow
https://github.com/apache/airflow
29,177
["airflow/providers/apache/livy/hooks/livy.py", "airflow/providers/http/hooks/http.py", "airflow/providers/http/operators/http.py", "tests/providers/http/hooks/test_http.py"]
SimpleHttpOperator not working with loginless auth_type
### Apache Airflow Provider(s) http ### Versions of Apache Airflow Providers apache-airflow-providers-http==4.1.1 ### Apache Airflow version 2.5.0 ### Operating System Ubuntu 20.04.5 LTS (Focal Fossa)" ### Deployment Virtualenv installation ### Deployment details Reproduced on a local d...
https://github.com/apache/airflow/issues/29177
https://github.com/apache/airflow/pull/29206
013490edc1046808c651c600db8f0436b40f7423
c44c7e1b481b7c1a0d475265835a23b0f507506c
2023-01-26T08:28:39Z
python
2023-03-20T13:52:02Z
closed
apache/airflow
https://github.com/apache/airflow
29,175
["airflow/providers/redis/provider.yaml", "docs/apache-airflow-providers-redis/index.rst", "generated/provider_dependencies.json", "tests/system/providers/redis/__init__.py", "tests/system/providers/redis/example_redis_publish.py"]
Support for Redis Time series in Airflow common packages
### Description The current Redis API version is quite old. I need to implement a DAG for Timeseries data feature. Please upgrade to version that supports this. BTW, I was able to manually update my redis worker and it now works. Can this be added to next release please. ### Use case/motivation Timeseries in Red...
https://github.com/apache/airflow/issues/29175
https://github.com/apache/airflow/pull/31279
df3569cf489ce8ef26f5b4d9d9c3826d3daad5f2
94cad11b439e0ab102268e9e7221b0ab9d98e0df
2023-01-26T03:42:51Z
python
2023-05-16T13:11:18Z
closed
apache/airflow
https://github.com/apache/airflow
29,128
["docs/apache-airflow-providers-ftp/index.rst"]
[Doc] Link to examples how to use FTP provider is incorrect
### What do you see as an issue? HI. I tried to use FTP provider (https://airflow.apache.org/docs/apache-airflow-providers-ftp/stable/connections/ftp.html#howto-connection-ftp) but link to the "Example DAGs" is incorrect and Github response is 404. ### Solving the problem Please update links to Example DAGs - here ...
https://github.com/apache/airflow/issues/29128
https://github.com/apache/airflow/pull/29134
33ba242d7eb8661bf936a9b99a8cad4a74b29827
1fbfd312d9d7e28e66f6ba5274421a96560fb7ba
2023-01-24T12:07:45Z
python
2023-01-24T19:24:26Z
closed
apache/airflow
https://github.com/apache/airflow
29,125
["airflow/models/dag.py", "airflow/models/dagrun.py", "tests/models/test_dag.py", "tests/models/test_dagrun.py"]
Ensure teardown failure with on_failure_fail_dagrun=True fails the DagRun, and not otherwise
null
https://github.com/apache/airflow/issues/29125
https://github.com/apache/airflow/pull/30398
fc4166127a1d2099d358fee1ea10662838cf9cf3
db359ee2375dd7208583aee09b9eae00f1eed1f1
2023-01-24T11:08:45Z
python
2023-05-08T10:58:30Z
closed
apache/airflow
https://github.com/apache/airflow
29,113
["docs/apache-airflow-providers-sqlite/operators.rst"]
sqlite conn id unclear
### What do you see as an issue? The sqlite conn doc here https://airflow.apache.org/docs/apache-airflow-providers-sqlite/stable/operators.html is unclear. Sqlite does not use username, password, port, schema. These need to be removed from the docs. Furthermore, it is unclear how to construct a conn string for sq...
https://github.com/apache/airflow/issues/29113
https://github.com/apache/airflow/pull/29139
d23033cff8a25e5f71d01cb513c8ec1d21bbf491
ec7674f111177c41c02e5269ad336253ed9c28b4
2023-01-23T17:44:59Z
python
2023-05-01T20:34:12Z
closed
apache/airflow
https://github.com/apache/airflow
29,105
["airflow/www/static/js/graph.js"]
graph disappears during run time when using branch_task and a dynamic classic operator
### Apache Airflow version 2.5.1 ### What happened when using a dynamically generated task that gets the expand data from xcom after a branch_task the graph doesn't render. It reappears once the dag run is finished. tried with BashOperator and a KubernetesPodOperator. the developer console in the brows...
https://github.com/apache/airflow/issues/29105
https://github.com/apache/airflow/pull/29042
b2825e11852890cf0b0f4d0bcaae592311781cdf
33ba242d7eb8661bf936a9b99a8cad4a74b29827
2023-01-23T14:55:28Z
python
2023-01-24T15:27:44Z
closed
apache/airflow
https://github.com/apache/airflow
29,100
["airflow/www/static/js/dag/details/Dag.tsx", "airflow/www/static/js/dag/details/dagRun/index.tsx", "airflow/www/static/js/dag/details/taskInstance/Logs/LogBlock.tsx", "airflow/www/static/js/dag/details/taskInstance/index.tsx", "airflow/www/static/js/dag/grid/index.tsx", "airflow/www/static/js/utils/useOffsetHeight.tsx...
Unnecessary scrollbars in grid view
### Apache Airflow version 2.5.0 ### What happened Compare the same DAG grid view in 2.4.3: (everything is scrolled using the "main" scrollbar of the window) ![image](https://user-images.githubusercontent.com/3342974/213983669-c5a701f1-a4d8-4d02-b29b-caf5f9c9a2db.png) and in 2.5.0 (and 2.5.1) (left and right...
https://github.com/apache/airflow/issues/29100
https://github.com/apache/airflow/pull/29367
1b18a501fe818079e535838fa4f232b03365fc75
643d736ebb32c488005b3832c2c3f226a77900b2
2023-01-23T07:19:18Z
python
2023-02-05T23:15:03Z
closed
apache/airflow
https://github.com/apache/airflow
29,070
["airflow/providers/ftp/operators/ftp.py", "airflow/providers/sftp/operators/sftp.py", "tests/providers/ftp/operators/test_ftp.py"]
FTP operator has logic in __init__
### Body Similarly to SFTP (fixed in https://github.com/apache/airflow/pull/29068) the logic from __init__ should be moved to execute. The #29068 provides a blueprint for that. ### Committer - [X] I acknowledge that I am a maintainer/committer of the Apache Airflow project.
https://github.com/apache/airflow/issues/29070
https://github.com/apache/airflow/pull/29073
8eb348911f2603feba98787d79b88bbd84bd17be
2b7071c60022b3c483406839d3c0ef734db5daad
2023-01-20T19:31:08Z
python
2023-01-21T00:29:53Z
closed
apache/airflow
https://github.com/apache/airflow
28,973
["airflow/models/xcom_arg.py", "tests/models/test_taskinstance.py"]
Dynamic Task Mapping skips tasks before upstream has started
### Apache Airflow version 2.5.0 ### What happened In some cases we are seeing dynamic mapped task being skipped before upstream tasks have started & the dynamic count for the task can be calculated. We see this both locally in a with the `LocalExecutor` & on our cluster with the `KubernetesExecutor`. To tr...
https://github.com/apache/airflow/issues/28973
https://github.com/apache/airflow/pull/30641
8cfc0f6332c45ca750bc2317ea1e283aaf2ac5bd
5f2628d36cb8481ee21bd79ac184fd8fdce3e47d
2023-01-16T14:18:41Z
python
2023-04-22T19:00:34Z
closed
apache/airflow
https://github.com/apache/airflow
28,951
["airflow/providers/docker/operators/docker.py", "tests/providers/docker/decorators/test_docker.py", "tests/providers/docker/operators/test_docker.py"]
Add a way to skip Docker Operator task
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened Airflow 2.3.3 Raising the `AirflowSkipException` in the source code, using the `DockerOperator`, is supposed to mark the task as skipped, according to the [docs](https://airflow.apache.org/docs/apache-airflow/stable/concep...
https://github.com/apache/airflow/issues/28951
https://github.com/apache/airflow/pull/28996
bc5cecc0db27cb8684c238b36ad12c7217d0c3ca
3a7bfce6017207218889b66976dbee1ed84292dc
2023-01-15T11:36:04Z
python
2023-01-18T21:04:14Z
closed
apache/airflow
https://github.com/apache/airflow
28,912
["docs/apache-airflow/start.rst"]
quick start fails: DagRun for example_bash_operator with run_id or execution_date of '2015-01-01' not found
### Apache Airflow version 2.5.0 ### What happened I follow the [quick start guide](https://airflow.apache.org/docs/apache-airflow/stable/start.html) When I execute `airflow tasks run example_bash_operator runme_0 2015-01-01` I got the following error: ``` [2023-01-13 15:50:42,493] {dagbag.py:538} INFO - Fil...
https://github.com/apache/airflow/issues/28912
https://github.com/apache/airflow/pull/28949
c57c23dce39992eafcf86dc08a1938d7d407803f
a4f6f3d6fe614457ff95ac803fd15e9f0bd38d27
2023-01-13T07:55:02Z
python
2023-01-15T21:01:08Z
closed
apache/airflow
https://github.com/apache/airflow
28,891
["chart/templates/pgbouncer/pgbouncer-deployment.yaml", "chart/values.schema.json", "chart/values.yaml"]
Pgbouncer metrics exporter restarts
### Official Helm Chart version 1.6.0 ### Apache Airflow version 2.4.2 ### Kubernetes Version 1.21 ### Helm Chart configuration Nothing really specific ### Docker Image customizations _No response_ ### What happened From time to time we have pg_bouncer metrics exporter that fails its healthcheck. When it ...
https://github.com/apache/airflow/issues/28891
https://github.com/apache/airflow/pull/29752
d0fba865aed1fc21d82f0a61cddb1fa0bd4b7d0a
44f89c6db115d91aba91955fde42475d1a276628
2023-01-12T15:18:28Z
python
2023-02-27T18:20:30Z
closed
apache/airflow
https://github.com/apache/airflow
28,888
["airflow/www/app.py", "tests/www/views/test_views_base.py"]
`webserver.instance_name` shows markup text in `<title>` tag
### Apache Airflow version 2.5.0 ### What happened https://github.com/apache/airflow/pull/20888 enables the use of markup to style the `webserver.instance_name`. However, if the instance name has HTML code, this will also be reflected in the `<title>` tag, as shown in the screenshot below. ![image](https://user-im...
https://github.com/apache/airflow/issues/28888
https://github.com/apache/airflow/pull/28894
696b91fafe4a557f179098e0609eb9d9dcb73f72
971e3226dc3ca43900f0b79c42afffb14c59d691
2023-01-12T14:32:55Z
python
2023-03-16T11:34:39Z
closed
apache/airflow
https://github.com/apache/airflow
28,884
["airflow/providers/microsoft/azure/hooks/wasb.py", "tests/providers/microsoft/azure/hooks/test_wasb.py"]
Azure Blob storage exposes crendentials in UI
### Apache Airflow version Other Airflow 2 version (please specify below) 2.3.3 ### What happened Azure Blob Storage exposes credentials in the UI <img width="1249" alt="Screenshot 2023-01-12 at 14 00 05" src="https://user-images.githubusercontent.com/35199552/212072943-adca75c4-2226-4251-9446-e8f18fb22081...
https://github.com/apache/airflow/issues/28884
https://github.com/apache/airflow/pull/28914
6f4544cfbdfa3cabb3faaeea60a651206cd84e67
3decb189f786781bb0dfb3420a508a4a2a22bd8b
2023-01-12T13:01:24Z
python
2023-01-13T15:02:59Z
closed
apache/airflow
https://github.com/apache/airflow
28,847
["airflow/www/static/js/callModal.js", "airflow/www/templates/airflow/dag.html", "airflow/www/views.py"]
Graph UI: Add Filter Downstream & Filter DownStream & Upstream
### Description Currently Airflow has a `Filter Upstream` View/option inside the graph view. (As documented [here](https://docs.astronomer.io/learn/airflow-ui#graph-view) under `Filter Upstream`) <img width="682" alt="image" src="https://user-images.githubusercontent.com/9246654/211711759-670a1180-7f90-4ecd-84b0-2f...
https://github.com/apache/airflow/issues/28847
https://github.com/apache/airflow/pull/29226
624520db47f736af820b4bc834a5080111adfc96
a8b2de9205dd805ee42cf6b0e15e7e2805752abb
2023-01-11T03:35:33Z
python
2023-02-03T15:04:32Z
closed
apache/airflow
https://github.com/apache/airflow
28,830
["airflow/providers/amazon/aws/transfers/dynamodb_to_s3.py", "airflow/providers/amazon/aws/waiters/README.md", "airflow/providers/amazon/aws/waiters/dynamodb.json", "docs/apache-airflow-providers-amazon/transfer/dynamodb_to_s3.rst", "tests/providers/amazon/aws/transfers/test_dynamodb_to_s3.py", "tests/providers/amazon/...
Export DynamoDB table to S3 with PITR
### Description Airflow provides the Amazon DynamoDB to Amazon S3 below. https://airflow.apache.org/docs/apache-airflow-providers-amazon/stable/operators/transfer/dynamodb_to_s3.html Most of Data Engineer build their "export DDB data to s3" pipeline using "within the point in time recovery window". https://b...
https://github.com/apache/airflow/issues/28830
https://github.com/apache/airflow/pull/31142
71c26276bcd3ddd5377d620e6b8baef30b72eaa0
cd3fa33e82922e01888d609ed9c24b9c2dadfa27
2023-01-10T13:44:29Z
python
2023-05-09T23:56:29Z
closed
apache/airflow
https://github.com/apache/airflow
28,825
["airflow/api_connexion/endpoints/dag_run_endpoint.py", "airflow/api_connexion/schemas/dag_run_schema.py", "tests/api_connexion/endpoints/test_dag_run_endpoint.py"]
Bad request when triggering dag run with `note` in payload
### Apache Airflow version 2.5.0 ### What happened Specifying a `note` in the payload (as mentioned [in the doc](https://airflow.apache.org/docs/apache-airflow/2.5.0/stable-rest-api-ref.html#operation/post_dag_run)) when triggering a new dag run yield a 400 bad request (Git Version: .release:2.5.0+fa2bec042995...
https://github.com/apache/airflow/issues/28825
https://github.com/apache/airflow/pull/29228
e626131563efb536f325a35c78585b74d4482ea3
b94f36bf563f5c8372086cec63b74eadef638ef8
2023-01-10T10:53:02Z
python
2023-02-01T19:37:39Z
closed
apache/airflow
https://github.com/apache/airflow
28,803
["airflow/datasets/manager.py", "airflow/jobs/scheduler_job.py", "docs/apache-airflow/administration-and-deployment/logging-monitoring/metrics.rst"]
statsd metric for dataset count
### Description A count of datasets that are currently registered/declared in an Airflow deployment. ### Use case/motivation Would be nice to see how deployments are adopting datasets. ### Related issues _No response_ ### Are you willing to submit a PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct...
https://github.com/apache/airflow/issues/28803
https://github.com/apache/airflow/pull/28907
5d84b59554c93fd22e92b46a1061b40b899a8dec
7689592c244111b24bc52e7428c5a3bb80a4c2d6
2023-01-09T14:51:24Z
python
2023-01-18T09:35:12Z
closed
apache/airflow
https://github.com/apache/airflow
28,789
["airflow/cli/cli_parser.py", "setup.cfg"]
Add colors in help outputs of Airfow CLI commands
### Body Folowing up after https://github.com/apache/airflow/pull/22613#issuecomment-1374530689 - seems that there is a new [rich-argparse](https://github.com/hamdanal/rich-argparse) project that might give us the option without rewriting Airflow's argument parsing to click (click has a number of possible performanc...
https://github.com/apache/airflow/issues/28789
https://github.com/apache/airflow/pull/29116
c310fb9255ba458b2842315f65f59758b76df9d5
fdac67b3a5350ab4af79fd98612592511ca5f3fc
2023-01-07T23:05:56Z
python
2023-02-08T11:04:12Z
closed
apache/airflow
https://github.com/apache/airflow
28,772
["airflow/utils/json.py", "airflow/www/utils.py", "airflow/www/views.py", "tests/www/test_utils.py"]
DAG Run List UI Breaks when a non-JSON serializable value is added to dag_run.conf
### Apache Airflow version 2.5.0 ### What happened When accessing `dag_run.conf` via a task's context, I was able to add a value that is non-JSON serializable. When I tried to access the Dag Run List UI (`/dagrun/list/`) or the Dag's Grid View, I was met with these error messages respectively: **Dag Run List UI**...
https://github.com/apache/airflow/issues/28772
https://github.com/apache/airflow/pull/28777
82c5a5f343d2310822f7bb0d316efa0abe9d4a21
8069b500e8487675df0472b4a5df9081dcfa9d6c
2023-01-06T19:10:49Z
python
2023-04-03T08:46:06Z
closed
apache/airflow
https://github.com/apache/airflow
28,766
["airflow/cli/commands/connection_command.py", "tests/cli/commands/test_connection_command.py"]
Cannot create connection without defining host using CLI
### Apache Airflow version 2.5.0 ### What happened In order to send logs to s3 bucket after finishing the task, I added a connection to airflow using cli. ```airflow connections add connection_id_1 --conn-uri aws://s3/?region_name=eu-west-1&endpoint_url=https%3A%2F%2Fs3.eu-west-1.amazonaws.com``` Then I ...
https://github.com/apache/airflow/issues/28766
https://github.com/apache/airflow/pull/28922
c5ee4b8a3a2266ef98b379ee28ed68ff1b59ac5f
d8b84ce0e6d36850cd61b1ce37840c80aaec0116
2023-01-06T13:43:51Z
python
2023-01-13T21:41:11Z
closed
apache/airflow
https://github.com/apache/airflow
28,751
["airflow/providers/google/cloud/operators/cloud_base.py", "tests/providers/google/cloud/operators/test_cloud_base.py"]
KubernetesExecutor leaves failed pods due to deepcopy issue with Google providers
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened With Airflow 2.3 and 2.4 there appears to be a bug in the KubernetesExecutor when used in conjunction with the Google airflow providers. This bug does not affect Airflow 2.2 due to the pip version requirements. The b...
https://github.com/apache/airflow/issues/28751
https://github.com/apache/airflow/pull/29518
ec31648be4c2fc4d4a7ef2bd23be342ca1150956
5a632f78eb6e3dcd9dc808e73b74581806653a89
2023-01-05T17:31:57Z
python
2023-03-04T22:44:18Z
closed
apache/airflow
https://github.com/apache/airflow
28,745
["chart/templates/logs-persistent-volume-claim.yaml", "chart/values.schema.json", "chart/values.yaml"]
annotations in logs pvc
### Official Helm Chart version 1.7.0 (latest released) ### Apache Airflow version 2.5.0 ### Kubernetes Version v1.22.8+d48376b ### Helm Chart configuration _No response_ ### Docker Image customisations _No response_ ### What happened When creating the dags pvc, it is possible to inject annotations to the ob...
https://github.com/apache/airflow/issues/28745
https://github.com/apache/airflow/pull/29270
6ef5ba9104f5a658b003f8ade274f19d7ec1b6a9
5835b08e8bc3e11f4f98745266d10bbae510b258
2023-01-05T13:22:16Z
python
2023-02-20T22:57:35Z
closed
apache/airflow
https://github.com/apache/airflow
28,691
["airflow/providers/amazon/aws/utils/waiter.py", "tests/providers/amazon/aws/utils/test_waiter.py"]
Fix custom waiter function in AWS provider package
### Apache Airflow Provider(s) amazon ### Versions of Apache Airflow Providers _No response_ ### Apache Airflow version 2.5.0 ### Operating System MacOS ### Deployment Virtualenv installation ### Deployment details _No response_ ### What happened Discussed in #28294 ### What yo...
https://github.com/apache/airflow/issues/28691
https://github.com/apache/airflow/pull/28753
2b92c3c74d3259ebac714f157c525836f0af50f0
ce188e509389737b3c0bdc282abea2425281c2b7
2023-01-03T14:34:10Z
python
2023-01-05T22:09:24Z
closed
apache/airflow
https://github.com/apache/airflow
28,680
["airflow/providers/amazon/aws/operators/batch.py", "tests/providers/amazon/aws/operators/test_batch.py"]
Improve AWS Batch hook and operator
### Description AWS Batch hook and operator do not support the boto3 parameter shareIdentifier, which is required to submit jobs to specific types of queues. ### Use case/motivation I wish that AWS Batch hook and operator support the submit of jobs to queues that require shareIdentifier parameter. ### Related issue...
https://github.com/apache/airflow/issues/28680
https://github.com/apache/airflow/pull/30829
bd542fdf51ad9550e5c4348f11e70b5a6c9adb48
612676b975a2ff26541bb2581fbdf2befc6c3de9
2023-01-02T14:47:23Z
python
2023-04-28T22:04:16Z
closed
apache/airflow
https://github.com/apache/airflow
28,670
["airflow/providers/telegram/CHANGELOG.rst", "airflow/providers/telegram/hooks/telegram.py", "airflow/providers/telegram/provider.yaml", "docs/spelling_wordlist.txt", "generated/provider_dependencies.json", "tests/providers/telegram/hooks/test_telegram.py"]
Support telegram-bot v20+
### Body Currently our telegram integration uses Telegram v13 telegram-bot library. On 1st of Jan 2023 a new, backwards incompatible version of Telegram-bot has been released : https://pypi.org/project/python-telegram-bot/20.0/#history and at least as reported by MyPy and our test suite test failures, Telegram 20 need...
https://github.com/apache/airflow/issues/28670
https://github.com/apache/airflow/pull/28953
68412e166414cbf6228385e1e118ec0939857496
644cea14fff74d34f823b5c52c9dbf5bad33bd52
2023-01-02T06:58:45Z
python
2023-02-23T03:24:13Z
closed
apache/airflow
https://github.com/apache/airflow
28,637
["docs/helm-chart/index.rst"]
version 2.4.1 migration job "run-airflow-migrations" run once only when deploy via helm or flux/kustomization
### Official Helm Chart version 1.7.0 (latest released) ### Apache Airflow version 2.4.1 ### Kubernetes Version v4.5.4 ### Helm Chart configuration _No response_ ### Docker Image customisations _No response_ ### What happened manually copied from [the Q & A 27992 migration job](https://gi...
https://github.com/apache/airflow/issues/28637
https://github.com/apache/airflow/pull/29078
30ad26e705f50442f05dd579990372196323fc86
6c479437b1aedf74d029463bda56b42950278287
2022-12-29T10:27:55Z
python
2023-01-27T20:58:56Z
closed
apache/airflow
https://github.com/apache/airflow
28,615
["airflow/dag_processing/processor.py", "airflow/models/dagbag.py", "tests/models/test_dagbag.py"]
AIP-44 Migrate Dagbag.sync_to_db to internal API.
This method is used in DagFileProcessor.process_file - it may be easier to migrate all it's internal calls instead of the whole method.
https://github.com/apache/airflow/issues/28615
https://github.com/apache/airflow/pull/29188
05242e95bbfbaf153e4ae971fc0d0a5314d5bdb8
5c15b23023be59a87355c41ab23a46315cca21a5
2022-12-27T20:09:25Z
python
2023-03-12T10:02:57Z
closed
apache/airflow
https://github.com/apache/airflow
28,614
["airflow/api_internal/endpoints/rpc_api_endpoint.py", "airflow/api_internal/internal_api_call.py", "airflow/models/dag.py", "tests/api_internal/test_internal_api_call.py"]
AIP-44 Migrate DagModel.get_paused_dag_ids to Internal API
null
https://github.com/apache/airflow/issues/28614
https://github.com/apache/airflow/pull/28693
f114c67c03a9b4257cc98bb8a970c6aed8d0c673
ad738198545431c1d10619f8e924d082bf6a3c75
2022-12-27T20:09:14Z
python
2023-01-20T19:08:18Z
closed
apache/airflow
https://github.com/apache/airflow
28,613
["airflow/api_internal/endpoints/rpc_api_endpoint.py", "airflow/models/trigger.py"]
AIP-44 Migrate Trigger class to Internal API
null
https://github.com/apache/airflow/issues/28613
https://github.com/apache/airflow/pull/29099
69babdcf7449c95fea7fe3b9055c677b92a74298
ee0a56a2caef0ccfb42406afe57b9d2169c13a01
2022-12-27T20:09:03Z
python
2023-02-20T21:26:11Z
closed
apache/airflow
https://github.com/apache/airflow
28,612
["airflow/api_internal/endpoints/rpc_api_endpoint.py", "airflow/models/xcom.py"]
AIP-44 Migrate XCom get*/clear* to Internal API
null
https://github.com/apache/airflow/issues/28612
https://github.com/apache/airflow/pull/29083
9bc48747ddbd609c2bd3baa54a5d0472e9fdcbe4
a1ffb26e5bcf4547e3b9e494cf7ccd24af30c2e6
2022-12-27T20:08:50Z
python
2023-01-22T19:19:01Z
closed
apache/airflow
https://github.com/apache/airflow
28,510
[".pre-commit-config.yaml", "STATIC_CODE_CHECKS.rst", "airflow/cli/commands/info_command.py", "scripts/ci/pre_commit/pre_commit_check_provider_yaml_files.py", "scripts/in_container/run_provider_yaml_files_check.py"]
Add pre-commit/test to verify extra links refer to existed classes
### Body We had an issue where extra link class (`AIPlatformConsoleLink`) was removed in [PR](https://github.com/apache/airflow/pull/26836) without removing the class from the `provider.yaml` extra links this resulted in web server exception as shown in https://github.com/apache/airflow/pull/28449 **The Task:** ...
https://github.com/apache/airflow/issues/28510
https://github.com/apache/airflow/pull/28516
7ccbe4e7eaa529641052779a89e34d54c5a20f72
e47c472e632effbfe3ddc784788a956c4ca44122
2022-12-20T22:35:11Z
python
2022-12-22T02:25:08Z
closed
apache/airflow
https://github.com/apache/airflow
28,483
["airflow/www/static/css/main.css"]
Issues with Custom Menu Items on Smaller Windows
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened We take advantage of the custom menu items with flask appbuilder offer a variety of dropdown menus with custom DAG filters. We've notice two things: 1. When you have too many dropdown menu items in a single category, sever...
https://github.com/apache/airflow/issues/28483
https://github.com/apache/airflow/pull/28561
ea3be1a602b3e109169c6e90e555a418e2649f9a
2aa52f4ce78e1be7f34b0995d40be996b4826f26
2022-12-19T23:40:01Z
python
2022-12-30T01:50:45Z
closed
apache/airflow
https://github.com/apache/airflow
28,465
["airflow/providers/jenkins/hooks/jenkins.py", "docs/apache-airflow-providers-jenkins/connections.rst", "tests/providers/jenkins/hooks/test_jenkins.py"]
Airflow 2.2.4 Jenkins Connection - unable to set as the hook expects to be
### Apache Airflow version Other Airflow 2 version (please specify below) ### What happened Hello team, I am trying to use the `JenkinsJobTriggerOperator` version v3.1.0 on an Airflow instance version 2.2.4 Checking the documentation regards how to set up the connection and the hook in order to use `http...
https://github.com/apache/airflow/issues/28465
https://github.com/apache/airflow/pull/30301
f7d5b165fcb8983bd82a852dcc5088b4b7d26a91
1f8bf783b89d440ecb3e6db536c63ff324d9fc62
2022-12-19T14:43:00Z
python
2023-03-25T19:37:53Z