Skip to content

Commit

Permalink
Merge branch 'feat/make-it-work-for-serp' of https://github.com/Swans…
Browse files Browse the repository at this point in the history
…eaUniversityMedical/DARE-Airflow into feat/make-it-work-for-serp
  • Loading branch information
tekkisse committed Oct 8, 2024
2 parents c873662 + 156c6cb commit 1a4f488
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose/airflow/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ x-airflow-common:
# image: ${AIRFLOW_IMAGE_NAME:-apache/airflow:2.0.2}
# image: harbor.ukserp.ac.uk/dare/airflow/dags:pr-73 #1.4.4
# image: harbor.ukserp.ac.uk/dlm/airflow/dags:1.14.1
image: harbor.ukserp.ac.uk/dlm/airflow/dags:pr-114
image: harbor.ukserp.ac.uk/dlm/airflow/dags:1.20.0
environment:
&airflow-common-env
AIRFLOW__CORE__EXECUTOR: CeleryExecutor
Expand Down
48 changes: 47 additions & 1 deletion docker-compose/minio-trino/rabbitmq/definitions.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,15 @@

}
},
{
"name":"request_schema_save",
"vhost":"/",
"durable":true,
"auto_delete":false,
"arguments":{

}
},
{
"name":"audit_raw",
"vhost":"/",
Expand Down Expand Up @@ -130,6 +139,15 @@
"auto_delete":false,
"arguments":{

}
},
{
"name":"return_schema",
"vhost":"/",
"durable":true,
"auto_delete":false,
"arguments":{

}
}
],
Expand Down Expand Up @@ -173,6 +191,15 @@
"auto_delete":false,
"internal":false,
"arguments":{}
},
{
"name":"schemaOutput",
"vhost":"/",
"type":"fanout",
"durable":true,
"auto_delete":false,
"internal":false,
"arguments":{}
}
],
"bindings":[
Expand Down Expand Up @@ -261,9 +288,28 @@
"vhost":"/",
"destination":"request_schema",
"destination_type":"queue",
"routing_key":"request",
"routing_key":"",
"arguments":{

}
},
{
"source":"schema",
"vhost":"/",
"destination":"request_schema_save",
"destination_type":"queue",
"routing_key":"",
"arguments":{

}
},
{
"source":"schemaOutput",
"vhost":"/",
"destination":"return_schema",
"destination_type":"queue",
"routing_key":"request",
"arguments":{
}
}
]
Expand Down

0 comments on commit 1a4f488

Please sign in to comment.