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
最佳答案
将Firestore导出加载到BigQuery时有一些limitations,这两个可能与您正在观察的错误有关:
为了正确加载Cloud Firestore导出,导出数据中的文档必须共享一致的架构。
您的export命令必须指定一个collection-ids过滤器。导出的未指定集合ID过滤器的数据无法加载到BigQuery中。
我还注意到您正在按照将数据存储区导出加载到BigQuery的过程进行操作。尽管它们非常相似,但您可能要遵循Firestore Exports to BigQuery。