Very nice. I noticed a bug in one line: pip install pip install airflow==1.8.0
I see you've used the plugin class to add operators, so they appear in the airflow.operators namespace. I'm wondering about what other people are doing there and what the best way is to add custom operators to airflow itself. Are plugins the best way to do this? In my examples, I just added them in a subfolder under dags, so they're more like imported modules available under whatever structure I come up with ( airflow/dags/acme/operators/MyOperator.py then becomes import acme.operators.MyOperator ). Rgds, Gerard On Tue, Apr 4, 2017 at 10:25 PM, Michal K <[email protected]> wrote: > Hi everyone, > > I would just like to let you know that I wrote an introductory article for > new users who are getting started with Airflow. > > You can find it here: https://bitly.com/2nGRgzj > > I would be happy to hear your comments or suggestions. > Feel free to link to the article if you find it useful. > > Thanks for all your work on Airflow, > > Michal >
