firebase - 实体是意外的种类

标签 firebase google-bigquery google-cloud-firestore

this give database present in firestore

1)首先,我通过控制台进行了 Firestore 导出

2) 其次,当我尝试从 Cloud Firestore 导出加载数据时

 By steps given in this link - https://cloud.google.com/bigquery/docs/loading-data-cloud-datastore

3) 我收到错误消息,说“实体出乎意料 **** ”
 Here '****' represents collection name in firestore

this is error i get in bigquery during load

最佳答案

有一些limitations将 Firestore 导出加载到 BigQuery 时,这两个可能与您观察到的错误有关:

  • 要正确加载 Cloud Firestore 导出,导出数据中的文档必须共享一致的架构。
  • 您的导出命令必须指定 collection-ids 过滤器。未指定集合 ID 过滤条件而导出的数据无法加载到 BigQuery。

  • 我还注意到您正在按照将数据存储导出加载到 BigQuery 的过程进行操作。您可能想关注 Firestore Exports to BigQuery相反,尽管它们非常相似。

    关于firebase - 实体是意外的种类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55741724/

    相关文章:

    javascript - 如何比较 firebase 时间戳?

    firebase - 用于下载数据的 FireBase RealTime DataBase 帐户是否会在开发者控制台中查看此数据?

    google-apps-script - 在电子表格中存档数据

    join - 使用连接表的 Big Query View 时出现 Data Studio 查询错误

    java - 如何解决时间戳java + firestore问题?

    javascript - 我不断收到此错误 : Cannot modify a WriteBatch that has been committed

    ios - Swift Firebase 在应用程序终止时删除用户

    reactjs - Firebase onAuthStateChanged 未按预期在 React 应用程序中运行

    java - BigQuery - 如何在 Java 客户端库中设置读取超时

    java - 使用 toObject 方法将 Snapshot 转换为 POJO 时,将包含 Date 对象的代码转换为 Firebase.Timestamp 对象的最佳方法