tornado自定义服务器和多进程

创建一个类,继承tornado.web.Application并且自定义handlers继承父类传入,以及自定义**setting.

class Application(tornado.web.Application):
    def __init__(self):
        handlers = [
            (r"/", MainHandler),
            # (r"/auth/register", Register),
            (r"/download",DownloadFile),
            (r"/auth/signin", SignIn),
            (r"/manage/newenergy", Newenergy),
            (r"/manage/CreateTask", CreateTask),
            (r"/manage/DownloadTemplate", DownLoadTemplate),
            (r"/manage/UploadFile", UpLoadFile),
            (r"/manage/UploadDict", UpLoadDict),
            (r"/manage/DictCalculation", DictCalculation),
            (r"/manage/DownloadDict", DownLoadDict),
            (r"/manage/Dictreload", DictReload),
            (r"/manage/FirstCalculation", FirstCalculation),
            (r"/manage/Downloadresult", DownloadResult),
            (r"/manage/updatetaskinfo", UpdateTaskInfo),
            (r"/manage/querytaskcomplate", QueryTaskComplate),
            (r"/filetemp_path/(.*)", tornado.web.StaticFileHandler, {"path": config.settings['filetemp_path']})
        ]
        super(Application, self).__init__(handlers, **config.settings)
        print("Init handle successful.........:", datetime.now())

        self.db = pools.Pool(
                    dict(host='52.82.110.214', port=4000, user='ecoindex', passwd='123456', db='ecoindex', use_unicode=True, charset='utf8'),
                    max_idle_connections=2,
                    max_recycle_sec=3,
                    max_open_connections=20,
                )


# 自定义服务器:
http_server = tornado.httpserver.HTTPServer(application)
# 启动多线程,需要绑定端口
http_server.bind(8000)
http_server.start(num_processes=5) #默认开启一个进程,5个进程,如果为none和小于的东西,则为对应服务器的核心数

app.listen(8000)只能单进程使用
tornado 提供了一次性启动多个进程的方式但是由于一些问题,不建议使用上面的方式启动多进程,而是手动启动多个进程,并且还可以使用不同的端口

三个问题
每个子进程都会从父进程copy一份IOloop实例,如果在创建子进程前修改了IOloop,会影响所有的子进程
所有的进程都是由一个命令启动的,无法做到不停止服务的情况下修改代码
所有进程共享一个端口,想要分别监控很困难
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

学渣王菜菜

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值