(Google App Engine) Bulkloader 上传会生成新条目,而不是更新现有条目
对于我的项目,我使用 GAE 数据存储来存储数据。用于备份 目的我决定使用bulkloader - 它下载整个 数据完美保存在 csv 文件中。上传数据也很好 没有错误。
我的问题是,上传不会更新现有数据,而是 创建重复项。以下是数据存储查看器的示例:
更新前:
ID/Name
id=18000
id=20001
更新后:
ID/Name
id=18000
id=20001
name=18000
name=20001
在数据存储实体中,我将其用作数据 ID:
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Long id;
知道如何使用批量加载器实际更新现有数据吗?
谢谢,亚当
for my project I am using GAE datastore to store data. For backup
purpose I decided to use the bulkloader - which downloads the whole
data perfectly in a csv file. Also the upload uploads the data fine
without errors.
My problem is, that the upload do not update the existing data but
creates duplicates. Here an example from the datastore viewer:
Before update:
ID/Name
id=18000
id=20001
After update:
ID/Name
id=18000
id=20001
name=18000
name=20001
In the datastore entity I am using this as an data id:
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Long id;
Any Idea how I can actually update existing data with bulkloader?
Thanks, Adam
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
bulkloader 的默认设置有一个令人讨厌的习惯,即破坏值的类型。这对于键和列表来说尤其是一个问题。
我使用这些辅助函数 bulk_helper,并添加这到我的bulkloader.yaml:
这保留了完整的密钥,包括种类和父信息,并使其保持人类可读(如果这对您很重要)。
bulkloader's default settings have a nasty habit of stomping the types of values. This is especially a problem for keys and lists.
I use these helper functions bulk_helper, and add this to my bulkloader.yaml:
This preserves the full key, including kind and parent info, and keeps it human readable (if that's important to you).