supervisord for python 3?

后端 未结 5 737
忘了有多久
忘了有多久 2020-12-13 06:02

Want to use supervisord to control the processes for my Python 3 project. It is specifically stated that \"Supervisor is known to work with Python 2.4 or later but will not

5条回答
  •  春和景丽
    2020-12-13 06:24

    Python 3 support for supervisord is still experimental and as mentioned in documentation, you shouldn't use it in production.

    Mozilla Foundation has developed a package called circus which works on Python 3.

    It manages process with circusd and it also has circusctl, circus-top, circus-web(similar to supervisor).

    You can use your supervisor conf file with circus with some changes. It also has a seperate section in docs for users coming from supervisor. You can read that for more details.

    Update: Latest master has python 3 support. You can install it with

    pip install git+https://github.com/Supervisor/supervisor
    

提交回复
热议问题