创建一个类,继承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,会影响所有的子进程
所有的进程都是由一个命令启动的,无法做到不停止服务的情况下修改代码
所有进程共享一个端口,想要分别监控很困难