Is it possible to write your own REST API in apache airflow?

Viewed 111

I want to update some of my resource present in database using REST API. Is there a way by which i can create custom REST endpoint in airflow with my own business logic ?

1 Answers

You indeed can extend Airflow, with almost endless possibilities :)

Airflow has something called Airflow Plugins which lets you to identify your own custom plugins, that will be loaded into Airflow. I searched on the web for some plugins that expose REST-API's, and there were some for reference:

I bet you can find more if you will search for "AirflowPlugin rest API", or something on that sphere :)

Related