Download the PHP package bluspark/airflow-dag-run-bundle without Composer
On this page you can find all versions of the php package bluspark/airflow-dag-run-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bluspark/airflow-dag-run-bundle
More information about bluspark/airflow-dag-run-bundle
Files in bluspark/airflow-dag-run-bundle
Package airflow-dag-run-bundle
Short Description Provide an HTTP Client to manage DAG run from Airflow
License CECILL-B
Informations about the package airflow-dag-run-bundle
Airflow Dag run Symfony bundle
This bundle provide a way to trigger new dag on Apache Airflow run to generate export files and request asynchronously for the generated export filename.
Installation
With composer:
Configuration
Make sure your bundle has been enabled in your config/bundles.php
file (automatically done if you're using Symfony Flex)
Add a bluspark_airflow_dag_run.yaml
file in your config/packages
directory to define the following required parameters:
You can have more details about the configuration parameters by running this command in your Symfony project:
Finally, add in your config/packages/messenger.yaml
file the transport of your choice which will handle the success message dispatched by the bundle (as explained below):
If you're using Symfony < 6.4, the bundle won't use
Scheduler
but a standard message dispatched through aMessengerBus
instead.
If so, you must declare all the bundl'es messages for the transport management :
Usage
The bundle provide a bridge service class that you can use in your project through using dependency injection.
Authorized parameters for the export request are:
format
: format expected for the export file (eg: "csv", "xls")export
: data type for your export (eg: 'pickup', 'producer', ...)search
: array of filters you want to apply for data included in your export fileextra
: array of data that you want to use or pass throughout all the export process (e.g. an email to notify on success)raw
: array of data only sent and used in request (eg: initial filters before convertion)lang
: language to use for the export file (eg: "fr", "en")
No other configuration parameters are considered valid.
Once the export file has been requested on Airflow, the bundle uses a Scheduler recurring message to check every 30 seconds if the file has been successfully created, with its own handler.
Then, the bundle dispatch using Symfony Messenger component a Bluspark\AirflowDagRunBundle\Message\DagRunMessageExecuted
message with a filename
property containing the now available file on S3
You will have to implement the handler for the Bluspark\AirflowDagRunBundle\Message\DagRunMessageExecuted
message with your own logic inside your project.
To run the Scheduler transport used by this bundle, do not forget to run the following command (only for Symfony version >= 6.4)
Messages
The bundle implements 2 different messages that need to be consumed :
- a
Bluspark\AirflowDagRunBundle\Message\DagRunChecker
message meant to be consumed by thescheduler_airflow_dag_run
Schedule (provided by the bundle) - a
Bluspark\AirflowDagRunBundle\Message\DagRunMessageExecuted
message meant to be consumed by the Messenger transport of your choice in your project
License
This project is licensed under the CeCILL-B License - see the LICENSE file for details.
Sponsors
Bluspark is a Saas application to operate infrastructure of agglomerations and cities. It is a complete solution to manage the life cycle of your infrastructure, from the design to the maintenance.
The digital SaaS platform for financing and managing energy renovation aid
All versions of airflow-dag-run-bundle with dependencies
symfony/http-kernel Version ^6.3
symfony/config Version ^6.3
symfony/dependency-injection Version ^6.3
symfony/http-client Version ^6.3
symfony/scheduler Version ^6.3
symfony/messenger Version ^6.3
symfony/event-dispatcher Version ^6.3