How do I restart airflow webserver?

后端 未结 9 1523
误落风尘
误落风尘 2021-01-30 12:59

I am using airflow for my data pipeline project. I have configured my project in airflow and start the airflow server as a backend process using following command



        
9条回答
  •  一整个雨季
    2021-01-30 13:48

    The recommended approach is to create and enable the airflow webserver as a service. If you named the webserver as 'airflow-webserver', run the following command to restart the service:

    systemctl restart airflow-webserver

    You can use a ready-made AMI (namely, LightningFLow) from AWS Marketplace which provides Airflow services (webserver, scheduler, worker) which are enabled at startup.

    Note: LightningFlow comes pre-integrated with all required libraries, Livy, custom operators, and local Spark cluster.

    Link for AWS Marketplace: https://aws.amazon.com/marketplace/pp/Lightning-Analytics-Inc-LightningFlow-Integrated-o/B084BSD66V

提交回复
热议问题