我正在尝试清理并放入类似于 prod 的代码形状,但我在使用 Google App 引擎的 prod env 时遇到了很多问题。一切都在本地正常工作,但每次我尝试在产品上进行测试时,我都会遇到截止日期和超时问题。我的问题是:1)从我的玻璃器皿向许多用户推送带有相同附件(视频)的相同卡的最佳/建议做法是什么。这是从队列中调用的类:
class batchWorker(webapp2.RequestHandler):
def post(self):
userToPush = self.request.get('user_id')
#posting video
media_link = util.get_full_url(self, '/static/video/short_from_glass_low.mp4')
resp = urlfetch.fetch(media_link, deadline=2000)
media_video = MediaIoBaseUpload(io.BytesIO(resp.content), mimetype='video/mp4',
resumable=False)
users = Credentials.all()
for user in users:
creds = StorageByKeyName(Credentials, user.key().name(), 'credentials').get()
mirror_service = util.create_service('mirror', 'v1', creds)
#first card
timeline_item01 = {'text':'New video from bundle - Test002'}
timeline_item01['bundleId'] = 'video_001'
timeline_item01['isBundleCover'] = 'true'
mirror_service.timeline().insert(body=timeline_item01).execute()
#second card
timeline_item = {'text': 'Text here'}
timeline_item['isBundleCover'] = 'false'
timeline_item['bundleId'] = 'video_001'
mirror_service.timeline().insert(body=timeline_item, media_body=media_video).execute()
logging.info("Posted video for user %s" % user.key().name())
这就是我将其推送到队列的方式:
taskqueue.add(url='/worker', params={'user_id': '103012621006129330069'})
有时我完成了这项工作,其他一些我得到的日志如下:
2013-08-01 07:15:37.695 /worker 500 6481ms 0kb AppEngine-Google; (+http://code.google.com/appengine)
I 2013-08-01 07:15:31.676 make: Got type <class 'google.appengine.api.datastore_types.Blob'>
I 2013-08-01 07:15:31.677 validate: Got type <class 'oauth2client.client.OAuth2Credentials'>
I 2013-08-01 07:15:31.711 make: Got type <class 'google.appengine.api.datastore_types.Blob'>
I 2013-08-01 07:15:31.712 validate: Got type <class 'oauth2client.client.OAuth2Credentials'>
I 2013-08-01 07:15:31.713 URL being requested: https://www.googleapis.com/discovery/v1/apis/mirror/v1/rest?userIp=0.1.0.2
I 2013-08-01 07:15:31.770 URL being requested: https://www.googleapis.com/mirror/v1/timeline?alt=json
I 2013-08-01 07:15:32.675 URL being requested: https://www.googleapis.com/upload/mirror/v1/timeline?uploadType=multipart&alt=json
E 2013-08-01 07:15:37.685 The API call urlfetch.Fetch() took too long to respond and was cancelled. Traceback (most recent call last): File "/base/data/home/runtimes/python27
其他一些我得到了这个:
2013-08-01 07:15:11.066 /worker 500 7239ms 0kb AppEngine-Google; (+http://code.google.com/appengine)
I 2013-08-01 07:15:04.434 make: Got type <class 'google.appengine.api.datastore_types.Blob'>
I 2013-08-01 07:15:04.439 validate: Got type <class 'oauth2client.client.OAuth2Credentials'>
I 2013-08-01 07:15:04.527 make: Got type <class 'google.appengine.api.datastore_types.Blob'>
I 2013-08-01 07:15:04.528 validate: Got type <class 'oauth2client.client.OAuth2Credentials'>
I 2013-08-01 07:15:04.529 URL being requested: https://www.googleapis.com/discovery/v1/apis/mirror/v1/rest?userIp=0.1.0.2
I 2013-08-01 07:15:04.587 URL being requested: https://www.googleapis.com/mirror/v1/timeline?alt=json
I 2013-08-01 07:15:04.620 Refreshing due to a 401
I 2013-08-01 07:15:04.628 make: Got type <class 'google.appengine.api.datastore_types.Blob'>
I 2013-08-01 07:15:04.629 validate: Got type <class 'oauth2client.client.OAuth2Credentials'>
I 2013-08-01 07:15:04.630 Refreshing access_token
I 2013-08-01 07:15:04.833 make: Got type <class 'google.appengine.api.datastore_types.Blob'>
I 2013-08-01 07:15:04.834 validate: Got type <class 'oauth2client.client.OAuth2Credentials'>
I 2013-08-01 07:15:04.839 validate: Got type <class 'oauth2client.client.OAuth2Credentials'>
I 2013-08-01 07:15:04.839 get: Got type <class 'model.Credentials'>
I 2013-08-01 07:15:05.970 URL being requested: https://www.googleapis.com/upload/mirror/v1/timeline?uploadType=multipart&alt=json
E 2013-08-01 07:15:10.985 Deadline exceeded while waiting for HTTP response from URL: https://www.googleapis.com/upload/mirror/v1/timeline?uploadType=multipart&alt=json Traceba
目前我有点气馁,因为我可以 100% 理解逻辑,但 prod 的实施很痛苦。
我是否需要使用批量调用才能一个接一个地推卡?有不同的方法吗?为什么我在队列进程应该有 10 分钟的最后期限时遇到最后期限错误(最后期限错误在执行 10 秒后出现)。