I am running a cloud function whenever a firestore document is updated. The function reads the document, gets the user IDs and then takes the user token IDs from the realtime db and sends notification. So we have 1 document read here and some download overhead associated with the reads on the realtime db. My question is :
If cloud functions reads a node of the realtime db, will the downloads (for the read on the realtime db) be billable?
If cloud functions reads a document of firestore, will the document read be billable?