我一直在使用Google App Engine开发原型库存应用程序。我最近从使用旧的DB数据存储库切换到使用新的NDB库,而且功能很酷,但在对我的某个实体进行更改时,NDB突然插入了一个名为“元数据“在我的实体中。这是实体描述(我做的改变是添加“inv_posid”和“inv_lastchange”属性,没什么大不了的):
class Inventory(ndb.Model):
inv_product = ndb.KeyProperty(kind = Product)
inv_prdcr_name = ndb.StringProperty(default="")
inv_product_type = ndb.StringProperty(default="")
inv_product_name = ndb.StringProperty(default="")
inv_product_year = ndb.IntegerProperty(default=0)
inv_count = ndb.IntegerProperty(default=0)
inv_price = ndb.IntegerProperty(default=0)
inv_glass_price = ndb.IntegerProperty(default=0)
inv_bin = ndb.StringProperty(default="")
inv_posid = ndb.StringProperty(default="")
inv_lastchange = ndb.FloatProperty(default=0.0)
通过添加新属性,我打算更改我的查询以使用“inv_lastchange”作为过滤器,并且由于NDB从不在结果中包含没有包含相应属性的实体,我想快速扫描通过我的数据存储区,适当地将属性添加到所有实体。所以,这就是我的所作所为:
...
@ndb.tasklet
def fixInventory(invitem):
invitem.inv_posid = ""
invitem.inv_lastchange = 0.0
invkey = yield invitem.put_async()
inventory = Inventory.query()
output = inventory.map(fixInventory)
我认为使用tasklet并了解异步调用是如何工作的。但是,在我这样做之后,当我去查看数据存储区查看器(在我的本地数据存储区中)时,我看到了这个新的“元数据”属性,我刚才假设它是NDB需要的东西,所以我没有想到任何事情。
直到下次我尝试更新我的某个广告资源项时,我才收到此错误:
File "/Programming/VirtualCellar/server/virtsom.py", line 2118, in get
inventory.put()
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/model.py", line 3432, in _put
return self._put_async(**ctx_options).get_result()
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/tasklets.py", line 326, in get_result
self.check_success()
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/tasklets.py", line 369, in _help_tasklet_along
value = gen.throw(exc.__class__, exc, tb)
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/context.py", line 810, in put
key = yield self._put_batcher.add(entity, options)
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/tasklets.py", line 369, in _help_tasklet_along
value = gen.throw(exc.__class__, exc, tb)
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/context.py", line 343, in _put_tasklet
keys = yield self._conn.async_put(options, datastore_entities)
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/ndb/tasklets.py", line 455, in _on_rpc_completion
result = rpc.get_result()
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/api/apiproxy_stub_map.py", line 613, in get_result
return self.__get_result_hook(self)
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/datastore/datastore_rpc.py", line 1882, in __put_hook
self.check_rpc_success(rpc)
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/datastore/datastore_rpc.py", line 1373, in check_rpc_success
raise _ToDatastoreError(err)
BadRequestError: cannot store entity with reserved property name '__metadata__'
那发生了什么事?有什么我忘了在这里做的事吗?感觉“元数据”属性应该以某种方式被隐藏或保护,但它已经像常规属性一样被添加,现在阻止对实体进行任何其他保存。有人跑过这个吗?
答案 0 :(得分:2)
__metadata__
属性在保存到数据存储区时添加到实体,并在从数据存储区读取时删除。这是在_ToStorageEntity
中的_FromStorageEntity
和google/appengine/datastore/datastore_stub_util.py
函数中完成的。
据推测,内部失败已经以某种方式破坏了您的实体。
您可以通过从实体实例“__metadata__
dict中删除_properties
属性并保存来恢复。
例如:
for inv in Inventory.query():
del inv._properties['__metadata__']
inv.put()
(可能在尝试此操作之前备份您的本地数据存储文件,以防止发生事故)。
答案 1 :(得分:2)
所以,基于上面提到的 snakecharmerb ,我开始研究为什么我的数据存储区查看器也向我显示__metadata__
属性,结果发现我之前已经下载了一个较旧的谷歌应用程序引擎SDK的版本,由于某种原因,我的环境变量仍指向旧版本,即使我已经安装了最新版本的SDK几次。我从我的机器上擦除了谷歌应用程序引擎SDK的所有痕迹,并从头开始重新安装了SDK,并且瞧!数据存储区查看器中的__metadata__
属性消失了,我自己的代码!我目前的假设是google/appengine/datastore/datastore_stub_util.py
文件的旧版本没有以相同的方式处理__metadata__
属性。
非常感谢你的帮助!