gpt4 book ai didi

java - GAE Datastore Admin Backup 在 mapreduce 上失败并显示 404

转载 作者:行者123 更新时间:2023-11-30 11:10:08 24 4
gpt4 key购买 nike

我有一个带有两个模块的 Java GAE 应用程序,我在使用备份/恢复数据存储管理功能时遇到问题。任务创建正确但失败并在默认队列中无休止地重试。从我的非默认(“引擎”)模块的日志来看,它似乎正在尝试在那里处理它们(而不是在应用程序的默认模块中)。我的 web.xml 中也没有任何明确映射/_ah/mapreduce 的任何模块,这似乎是所报告的症状。我没有看到任何文档建议我需要去手动配置 appengine-mapreduce.jar,所以我还没有走那条路。

0.1.0.2 - - [07/Jan/2015:08:11:19 -0800] "POST /_ah/mapreduce/kickoffjob_callback/15759222115551DD09797 HTTP/1.1" 404 234 "https://ah-builtin-python-bundle-dot-MYAPP.appspot.com/_ah/datastore_admin/backup.do" "AppEngine-Google; (+http://code.google.com/appengine)" "engine.MYAPP.appspot.com" ms=10713 cpu_ms=22 cpm_usd=0.000026 queue_name=default task_name=50337988952552890461 pending_ms=10702 instance=0 app_engine_release=1.9.17 

这在某一时刻确实有效,但我已经升级了很多(从后端移动到模块,移动到 HRD,将 GAE 版本升级到 1.9.2,等等)。

提前感谢您的任何提示或建议!

编辑:

所以我想通了。我的应用程序中有两个模块(名为 default 和 engine)。默认任务队列路由到我的 queue.xml 中的引擎模块(以前称为后端),而不是 ah-builtin-python-bundle。

在路由到 ah-builtin-python-bundle 的 queue.xml 中添加一个新队列并将其用于 Datastore Admin 解决了这个问题。

最佳答案

如果您使用 queue.xml 对默认任务队列进行任何更改,特别是 target 元素,您将需要创建一个队列以使用数据存储管理。像这样的东西:

<queue>
<name>backup</name>
<rate>10/s</rate>
<bucket-size>40</bucket-size>
<max-concurrent-requests>10</max-concurrent-requests>
<target>ah-builtin-python-bundle</target>
</queue>

关于java - GAE Datastore Admin Backup 在 mapreduce 上失败并显示 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27827212/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com