Google app engine GoogleAppEngine的性能与其本地appserver不同

Google app engine GoogleAppEngine的性能与其本地appserver不同,google-app-engine,python,Google App Engine,Python,下面的函数将从Google搜索结果中提取URL。它在dev_appserver(localhost)中运行良好,但当我将其部署到Google App Engine上时,它显示出一些错误 节目: def googleSearch(keyword): from re import findall from urllib2 import build_opener from urllib import quote, unquote urlregex = r'<a[

下面的函数将从Google搜索结果中提取URL。它在
dev_appserver
(localhost)中运行良好,但当我将其部署到Google App Engine上时,它显示出一些错误

节目:

def googleSearch(keyword):
    from re import findall
    from urllib2 import build_opener
    from urllib import quote, unquote
    urlregex = r'<a[ ]href="/url\?q=(http://.+?)[&]'
    searchURL = 'https://www.google.com/search?q=' + quote(keyword, safe = '') # https will exclude Cached results
    #Google
    opener = build_opener()
    opener.addheaders = [('User-agent', 'Mozilla/5.0')]
    pagesource = opener.open(searchURL).read()
    result = findall(urlregex, pagesource)
    print result
    resultlist = []
    for url in result:
        resultlist.append(unquote(url))
    resultlist = sorted(set(resultlist), key=resultlist.index)
    return resultlist
Internal Server Error

The server has either erred or is incapable of performing the requested operation.

Traceback (most recent call last):
  File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.2/webapp2.py", line 1535, in __call__
    rv = self.handle_exception(request, response, e)
  File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.2/webapp2.py", line 1529, in __call__
    rv = self.router.dispatch(request, response)
  File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.2/webapp2.py", line 1278, in default_dispatcher
    return route.handler_adapter(request, response)
  File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.2/webapp2.py", line 1102, in __call__
    return handler.dispatch()
  File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.2/webapp2.py", line 572, in dispatch
    return self.handle_exception(e, self.app.debug)
  File "/base/data/home/runtimes/python27/python27_lib/versions/third_party/webapp2-2.5.2/webapp2.py", line 570, in dispatch
    return method(*args, **kwargs)
  File "/base/data/home/apps/s~crawlnsearch/1.370098233684025667/main.py", line 56, in get
    result = googleSearch(q)
  File "/base/data/home/apps/s~crawlnsearch/1.370098233684025667/goosearch.py", line 15, in googleSearch
    pagesource = opener.open(searchURL).read()
  File "/base/data/home/runtimes/python27/python27_dist/lib/python2.7/urllib2.py", line 410, in open
    response = meth(req, response)
  File "/base/data/home/runtimes/python27/python27_dist/lib/python2.7/urllib2.py", line 523, in http_response
    'http', request, response, code, msg, hdrs)
  File "/base/data/home/runtimes/python27/python27_dist/lib/python2.7/urllib2.py", line 442, in error
    result = self._call_chain(*args)
  File "/base/data/home/runtimes/python27/python27_dist/lib/python2.7/urllib2.py", line 382, in _call_chain
    result = func(*args)
  File "/base/data/home/runtimes/python27/python27_dist/lib/python2.7/urllib2.py", line 629, in http_error_302
    return self.parent.open(new, timeout=req.timeout)
  File "/base/data/home/runtimes/python27/python27_dist/lib/python2.7/urllib2.py", line 410, in open
    response = meth(req, response)
  File "/base/data/home/runtimes/python27/python27_dist/lib/python2.7/urllib2.py", line 523, in http_response
    'http', request, response, code, msg, hdrs)
  File "/base/data/home/runtimes/python27/python27_dist/lib/python2.7/urllib2.py", line 448, in error
    return self._call_chain(*args)
  File "/base/data/home/runtimes/python27/python27_dist/lib/python2.7/urllib2.py", line 382, in _call_chain
    result = func(*args)
  File "/base/data/home/runtimes/python27/python27_dist/lib/python2.7/urllib2.py", line 531, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 503: Service Unavailable

有人知道这个问题的解决方案吗。

尝试使用old_dev_appserver.py而不是dev_appserver.py。

尝试使用old_dev_appserver.py而不是dev_appserver.py。

这可能是因为谷歌的数据存储索引尚未更新。稍等一会儿,它就会起作用。谷歌解释了这一点

注意:在应用程序可用之前,生成数据存储索引可能需要一些时间。如果索引仍在生成过程中,您将在访问应用程序时收到NeedIndexError。对于本例来说,这是一个暂时性错误,因此,如果最初收到此异常,请稍后再试


这可能是因为谷歌的数据存储索引尚未更新。稍等一会儿,它就会起作用。谷歌解释了这一点

注意:在应用程序可用之前,生成数据存储索引可能需要一些时间。如果索引仍在生成过程中,您将在访问应用程序时收到NeedIndexError。对于本例来说,这是一个暂时性错误,因此,如果最初收到此异常,请稍后再试


这是正确答案。我等了大约一两分钟,让它工作起来。这是正确的答案。我等了大约一两分钟,让它工作起来。