Guest User

Untitled

a guest
Feb 20th, 2018
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. sql_alchemy_conn = postgresql+psycopg2://username:password@192.168.2.12:5432/airflow
  2. executor = CeleryExecutor
  3. broker_url = amqp://username:password@192.168.1.12:5672//
  4. celery_result_backend = db+postgresql://username:password@192.168.2.12:5432/airflow
  5.  
  6. RabbitMQ is running
  7. Can connect to PostgreSQL and have confirmed that Airflow has created tables
  8. Can start and view the webserver (including custom dags)
  9.  
  10. sql_alchemy_conn = postgresql+psycopg2://username:password@192.168.2.12:5432/airflow
  11. executor = CeleryExecutor
  12. broker_url = amqp://username:password@192.168.1.12:5672//
  13. celery_result_backend = db+postgresql://username:password@192.168.2.12:5432/airflow
  14.  
  15. [2018-02-19 14:58:14,276] {__init__.py:57} INFO - Using executor CeleryExecutor
  16. [2018-02-19 14:58:14,360] {driver.py:120} INFO - Generating grammar tables from /usr/lib/python3.5/lib2to3/Grammar.txt
  17. [2018-02-19 14:58:14,384] {driver.py:120} INFO - Generating grammar tables from /usr/lib/python3.5/lib2to3/PatternGrammar.txt
  18. [I 180219 14:58:15 command:139] Visit me at http://0.0.0.0:5555
  19. [I 180219 14:58:15 command:144] Broker: amqp://username:password@192.168.1.12:5672//
  20. [I 180219 14:58:15 command:147] Registered tasks:
  21. ['celery.accumulate',
  22. 'celery.backend_cleanup',
  23. 'celery.chain',
  24. 'celery.chord',
  25. 'celery.chord_unlock',
  26. 'celery.chunks',
  27. 'celery.group',
  28. 'celery.map',
  29. 'celery.starmap']
  30. [I 180219 14:58:15 mixins:224] Connected to amqp://username:password@192.168.1.12:5672//
Add Comment
Please, Sign In to add comment