pbj0812의 코딩 일기

[자동화] airflow 에 airflow-code-editor 설치 본문

빅데이터/자동화

[자동화] airflow 에 airflow-code-editor 설치

pbj0812 2020. 12. 3. 00:56

0. 목표

 - airflow 에 airflow-code-editor plugin 설치

1. 설치

 1) airflow 설치

pip install apache-airflow

 2) airflow-code-editor 설치

pip install airflow-code-editor

 3) 이외 라이브러리들

  - 되는 버전을 알려주신 빅데이터 엔지니어 한용준 님께 감사의 인사를 드립니다.

pip install marshmallow==2.19.5
pip install marshmallow-enum==1.5.1
pip install marshmallow-sqlalchemy==0.18.0

2. airflow 실행

 1) 실행

airflow initdb
airflow webserver -p 8080

 2) 익스플로어에 localhost:8080

  - Admin 에 DAGs Code Editor 생성

 3) File 에서는 파일 수정 및 저장 가능

 4) Git Workspace 에서는 git 관련된 내용을 수행하는데... git을 잘 모름...

3. 참고

 - andreax79/airflow-code-editor

Comments