오늘의 인기 글
최근 글
최근 댓글
Today
Total
05-08 04:42
관리 메뉴

우노

[Airflow] Configuration 확인 명령어 본문

Data/Airflow

[Airflow] Configuration 확인 명령어

운호(Noah) 2023. 9. 26. 17:23

들어가기앞서,

  • Airflow는 Airflow CLI를 사용해, Airflow에 설정된 Configuration을 확인할 수 있습니다.

Airflow CLI

  • 전체 Configuration 목록 확인

      $ airflow config list
  • 특정 Configuration Option 확인

      # airflow config get-value [Section] [Option]
    
      $ airflow config get-value core executor
      SequentialExecutor
    
      $ airflow config get-value metrics statsd_host
      localhost

참고 사이트

Comments