Getting Started with various Tools

22 / 43

Apache Airflow

Purpose: Airflow is a platform created by the community to programmatically author, schedule and monitor workflows.

Home Page: https://airflow.apache.org/

Documentation: https://airflow.apache.org/docs/

How to get started:

  1. In the web console tab on the right side of the screen, set path for Python 3

    export PATH=/usr/local/anaconda/bin:$PATH
    
  2. Set Airflow home

    export AIRFLOW_HOME=~/airflow
    
  3. Initialize DB

    airflow db init
    
  4. Create admin user name

    airflow users create --username admin --firstname Peter --lastname Parker --role Admin --email myself@gmail.com
    
  5. Start the web server

    airflow webserver --port 4050
    
  6. Open the Airflow UI

    http://e.cloudxlab.com:4050


No hints are availble for this assesment

Answer is not availble for this assesment

Loading comments...