Airflow veterans please help,
I was looking for a cron replacement and came across apache airflow.
We have a setup where multiple users should be able to create their own DAGs and schedule their jobs.
Our users are a mix of people who may not know how to write the DAG python file. Also, they may not have access to the server where airflow is running.
Is it possible to create an airflow DAG via UI. I could not find any reference to the same. All examples speak about creating a python file and uploading it to the $AIRFLOW_HOME/dag/ directory. Users will not have access to this directory.
Rundeck for example allows user to add workflows and task dependencies via UI. Is there a plugin/functionality similar to this in airflow.
PS: I really like the way airflow shows the dependency graphs and want to try it out. But If creating a DAG is so complicated, then it will be a major problem for lots of my end users.