Airflow Deploy
Install v2.7.3
-
pip install airflow
使用 pip 安装 airflow
如果安装速度过慢,可执行下面的命令指定镜像源进行下载安装
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple airflow
如果出现
Successfully installed airflow alembic croniter dill flask flask-admin flask-cache flask-login flask-swagger flask-wtf funcsigs future gitpython gunicorn jinja2 lxml markdown pandas psutil pygments python-daemon python-dateutil python-nvd3 requests setproctitle sqlalchemy tabulate thrift zope.deprecation Mako python-editor click itsdangerous Werkzeug wtforms PyYAML ordereddict gitdb2 MarkupSafe pytz numpy docutils setuptools lockfile six python-slugify idna urllib3 certifi chardet smmap2 Unidecode Cleaning up...
则表明安装成功。
-
airflow initdb
初始化 airflow 数据库,其内置(如果没有显式配置其他数据库)一个SQLite数据库
Configuration
安装成功之后, 执行
airflow info
可以从这个命令得知服务的具体详情,
从 info 中得到 airflow_home 的路径,
在 airflow_home 中,会生成多个文件,
其中 airflow.cfg 是该服务的配置文件。
Run
airflow webserver
执行此命令,则会开启airflow服务,
默认访问: localhost:8080
即可浏览 airflow web UI
未顺利安装: 进入Airflow官方首页 --> Install --> 选定版本 --> 按照操作进行即可。且注意 airflow 的 scheduler 是否运行,如果未运行,可手动执行: airflow scheduler