[Stream Firestore to BigQuery] How many instances of the extension do i need? #2157
Unanswered
sagarsubedi
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My data looks like this:
/organization/{orgId}/estimates/{estimateId}/spaces/{spaceId}
Each space contains inventory item array which is what i eventually need. These items are the items that belong to an order/estimate.
/organization/{orgId}/inventory
I need all the inventory items that belong to an organization. Now, the
inventory
sub-collection does have another sub-collection calledinstances
but I dont really need that at all.I keep getting errors like these:
I have 3 instances of the same extension (Stream Firestore to BigQuery). One is for
organizations
(this is at root level). Other fororganizations/{orgId}/estimates
and the third one fororganizations/{orgId}/inventory
.I can see the data that got imported from the
organizations
collection (the one at the root level) just fine. But no matter what i do i cannot seem to get theinventory
andestimates
.I would really appreciate some help here. Thank you for your time.
Beta Was this translation helpful? Give feedback.
All reactions