tree: f6fe5361bc91fbf3d6b12438cb22383e9e54c17c [path history] [tgz]
  1. main.py
  2. README.md
  3. reusable_subdags.py
  4. unique_users.py
examples/reusing_functions/README.md

subdag operator

This README demonstrates the use of the subdag operator.

The subdag operator allows you to effectively run a driver within a node. In this case, we are calculating unique website visitors from the following set of parameters:

  1. Region = CA (canada) or US (United States)
  2. Granularity of data = (day, week, month)

You can find the code in unique_users.py and reusable_subdags.py and look at how we run it in main.py.