2017-05-25 83 views
0

我想開始我的氣流的網絡服務器,但它說,它是無法識別的參數氣流:錯誤:無法識別的參數:網絡服務器

$ airflow webserver 
[2017-05-25 15:06:44,682] {__init__.py:36} INFO - Using executor CeleryExecutor 
    ____________  _____________ 
____ |__()_________ __/__ /________  __ 
____ /| |_ /__ ___/_ /_ __ /_ __ \_ | /|// 
___ ___ |/_/ _ __/ _// /_/ /_ |/ |//
_/_/ |_/_/ /_/ /_/ /_/ \____/____/|__/ 

[2017-05-25 15:06:45,099] {models.py:154} INFO - Filling up the DagBag from /home/ec2-user/airflow/dags 
usage: airflow [-h] [-v] 
airflow: error: unrecognized arguments: webserver 

看到,因爲大多數的其他參數都太破了,我已經嘗試重新安裝氣流: sudo pip install --upgrade --force-reinstall airflow==1.7.1.3

它工作得很好,直到我決定重新啓動它...

回答

0

我想通了,因爲我在寫這個問題的最後一行。我重新啓動,因爲我更新了DAG,其中,我又增加了一個ArgumentParser

parser = argparse.ArgumentParser() 
parser.add_argument(
    '-v', '--verbose', 
    help="Print lots of debugging statements", 
    action="store_const", dest="loglevel", const=logging.DEBUG, 
    default=logging.INFO, 
) 

顯然未在氣流的DAG允許