在api端点内发出http请求

时间:2018-08-12 12:37:39

标签: python python-requests tornado

我正在尝试在post api端点内发出请求。到目前为止,我已经做到了Async,但是我想知道这种情况下的行为如何。如果fetch失败,我想输出一条消息。但是,由于它是Async n,所以我猜想self.finish结束之前将输出底部的_upload_to_nsq()吗?是使同步最佳的方法,还是在错误发生时如何改进代码以输出消息?

class Handler(base.BaseHandler):

    def _upload_to_nsq(self):
        request = tornado.httpclient.HTTPRequest(
            '{}:4151/pub?topic=chamelo'.format(settings.nsqdlookup_address),
            body=self.request.body.decode(),
            method="POST")

        client = tornado.httpclient.AsyncHTTPClient()
        client.fetch(request)


    def _valiate_required_fields(self):
        missing_fields = []
        all_required_fields = ['state', 'upsert', 'schema']

        for field in all_required_fields:
            if field not in self.json_args:
                missing_fields.append(field)

        if len(missing_fields) > 0:
            raise FieldException('Require following fields: %s' % ', '.join(missing_fields))


    @tornado.web.removeslash
    def post(self):
        # Validate if required keys are present
        try:
            self._valiate_required_fields()
        except FieldException as e:
            self.set_status(400)
            self.finish({
            "code": 400,
                "message": str(e)
            })

        # Post request to nsqdlookup
        try:
            self._upload_to_nsq()
        except Error as e:
            self.set_status(400)
            self.finish({
            "code": 400,
                "message": str(e)
            })

        # Everything is good

        self.set_status(200)
        self.finish({
            "code": 200,
            "message": "Ok"
        })

1 个答案:

答案 0 :(得分:0)

Tornado通常是单线程的,因此您不应阻塞请求处理程序。使用异步客户端是实现所需内容的正确方法。

您将必须使自己的“发布”处理程序异步,即,在其实际完成工作之前返回并在要调用的后端API的“发布”完成时完成传入的请求。 / p>

在这里查看龙卷风文档中的示例:

http://www.tornadoweb.org/en/stable/web.html#decorators

(tornado.web.asynchronous装饰器部分中的示例显示了在服务器处理程序方法中使用AsyncHTTPClient的情况-此处正是您所需要的)