正在将数据从 Datastore 迁移到 Google Cloud Firestore
Migrating data to Google Cloud Firestore from Datastore
我决定将 Google Cloud Datastore 的数据迁移到 Cloud Firestore。我已阅读所有相关文档和博客,但没有找到 Datastore 与 Firestore 的定价比较(尽管我已阅读所有 Firestore 定价和每日配额详细信息)。
我想知道 Cloud Firestore 的优缺点,因为我们的数据是大规模的。我已经阅读了有关选择模式的文档 (https://cloud.google.com/datastore/docs/firestore-or-datastore)。在原生模式下直接将所有数据迁移到 Cloud Firestore 或在 Datastore 模式下使用 Firestore 是否安全?
提前致谢。
Firestore 和 Datastore 价格
新 Cloud Firestore DB 的价格几乎相同,只是 Firestore 中没有 Small Operations
。
您可以查看 Datastore here 的定价详细信息。以下是截至 2019 年 2 月 1 日美国多区域使用的价格:
可以找到 Firestore 价格的详细信息 here。截至 2019 年 2 月 1 日,美国多区域使用的价格为:
此外,在 2019 年 3 月 3 日,单区域使用的 Firestore 价格将低至多区域价格的 50%,如 Google 云平台中的 latest update 所述博客。
Datastore 到 Firestore 的迁移
至于迁移,将您的 Datastore 应用程序迁移到 Datastore 模式下的 Firestore 是 100% 安全的,但是如果您想在本机模式下使用 Firestore,则需要升级您的应用程序并执行手动数据迁移。
就在几周前,我将我们的一个应用程序从 Datastore 迁移到 Datastore 模式下的 Firestore,使用 export and import APIs.
复制所有数据
我决定将 Google Cloud Datastore 的数据迁移到 Cloud Firestore。我已阅读所有相关文档和博客,但没有找到 Datastore 与 Firestore 的定价比较(尽管我已阅读所有 Firestore 定价和每日配额详细信息)。
我想知道 Cloud Firestore 的优缺点,因为我们的数据是大规模的。我已经阅读了有关选择模式的文档 (https://cloud.google.com/datastore/docs/firestore-or-datastore)。在原生模式下直接将所有数据迁移到 Cloud Firestore 或在 Datastore 模式下使用 Firestore 是否安全?
提前致谢。
Firestore 和 Datastore 价格
新 Cloud Firestore DB 的价格几乎相同,只是 Firestore 中没有 Small Operations
。
您可以查看 Datastore here 的定价详细信息。以下是截至 2019 年 2 月 1 日美国多区域使用的价格:
可以找到 Firestore 价格的详细信息 here。截至 2019 年 2 月 1 日,美国多区域使用的价格为:
此外,在 2019 年 3 月 3 日,单区域使用的 Firestore 价格将低至多区域价格的 50%,如 Google 云平台中的 latest update 所述博客。
Datastore 到 Firestore 的迁移
至于迁移,将您的 Datastore 应用程序迁移到 Datastore 模式下的 Firestore 是 100% 安全的,但是如果您想在本机模式下使用 Firestore,则需要升级您的应用程序并执行手动数据迁移。
就在几周前,我将我们的一个应用程序从 Datastore 迁移到 Datastore 模式下的 Firestore,使用 export and import APIs.
复制所有数据