Pergunta

Alguém tem alguma experiência com a seguinte exceção ao usar o GAE UrlFetch?

      DownloadError: ApplicationError: 2 timed out

Estou tentando enviar uma solicitação de postagem HTTP. Igual a:

      result = urlfetch.fetch('http://api.nathan.com:8080/Obj/',
                              method='POST',
                              payload=postdata,
                              deadline=10)

Tentei definir o prazo para o máximo (10 segundos). A solicitação da linha de comando (usando CURL ou HTTPLIB2) leva cerca de um segundo.

       nchong@almond ~ $ time curl
                         -d "<Obj><a>1</a><b>n</b></Obj>"
                         http://api.nathan.com:8080/Obj/
       agd1c2VyYXBpcgoLEgRTZXNzGAIM      #< key returned by call
       real 0m1.109s
       user 0m0.003s
       sys  0m0.009s

Aqui está a saída do dev server para a solicitação de curl (estou usando o appEngine-resster-Server):

INFO     __init__.py:819] adding models from module __main__
INFO     __init__.py:867] added model Obj with type <class '__main__.Obj'>
INFO     dev_appserver.py:3243] "POST /Obj HTTP/1.1" 200 -
INFO     dev_appserver_index.py:205] Updating /path/to/index.yaml

Aqui está a saída quando tento usar o URLFETCH:

ERROR    __init__.py:388] ApplicationError: 2 timed out
Traceback (most recent call last):
  File "/path/to/webapp/__init__.py", line 507, in __call__
    handler.get(*groups)
  File "/path/to/myapp/main.py", line 62, in get
    result = urlfetch.fetch(...)
  File "/path/to/urlfetch.py", line 241, in fetch
    return rpc.get_result()
  File "/path/to/apiproxy_stub_map.py", line 501, in get_result
    return self.__get_result_hook(self)
  File "/path/to/urlfetch.py", line 325, in _get_fetch_result
    raise DownloadError(str(err))
DownloadError: ApplicationError: 2 timed out
INFO     dev_appserver.py:3243] "GET / HTTP/1.1" 500 -
INFO     dev_appserver.py:3243] "POST /Obj/ HTTP/1.1" 200 -
Foi útil?

Solução

O servidor da Web de desenvolvimento é um único thread. Você não pode fazer uma solicitação do seu aplicativo em execução dentro dele. Tente executar duas instâncias em portas diferentes.

A propósito, isso não deve ser um problema depois de implantado, pois o servidor AppEngine real é obviamente capaz de lidar com várias solicitações simultâneas.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top