google 数据存储 - java - 从所有实体中删除 属性

google datastore - java - delete a property from all entities

有没有办法使用 Java 从 Google 数据存储中的所有实体中删除 属性?我希望它不再显示在 Google Cloud Console 中。

我尝试在所有实体中将 属性 设置为 null,但这没有用。在查看实体列表时,它仍然出现在 GCC 中。只是每个条目都是 null.

如何从我的实体中完全删除此 属性?

编辑: 这是它在 GCC 中的样子。我想完全删除这个 属性:

再次 not possible to bulk update entities with a single query or command. You will have to read each entity individually, remove the field you no longer want (in memory, after you have read the entity), then update the entity 新的一组属性不包括您要删除的属性。