Yes. My usecase is to sync data in realtime from firebase to my companies existing databases where all the reporting and analytics runs. I would ideally want to set listener on the root of my firebase account and listen for all the child_ events happening at any descendants. I want only 2 params from that function:
1) absolute reference at which the event was fired,
2) snapshot of only the object for which the event was fired.
I believe such a function will be required for most large scale projects that need to sync their realtime database with existing hadoop or nosql store.
According to me this is a useful feature that should be added to firebase. Or do you suggest an alternate way to achieve this?
--
You received this message because you are subscribed to a topic in the Google Groups "Firebase Google Group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/firebase-talk/Rbjwoa_PoxE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to firebase-tal...@googlegroups.com.
To post to this group, send email to fireba...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/c7766630-b686-494a-91fa-c13910bf65e6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
2) snapshot of only the object for which the event was fired.
--
You received this message because you are subscribed to the Google Groups "Firebase Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to firebase-tal...@googlegroups.com.
To post to this group, send email to fireba...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/CACTPxgenjfG4RgsbsQG9_8sC%2BCTASDrOqPNFdwxNTYCYVoHg%2BQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/CADypTEY%2BseAqzn9xBJGzEpOBW9s2p7QLV5v%3DX6r1qeCSmwk_fw%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/CAHh5jvRvVW%3DaY-j%3D7PiQe%2BD_qg%3DeHF4Wng5LHKNhGUS-eH6qDQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/CANF_M5wN0irUBTEET31c9fyqN-F0cXZ%2BtRUdL8BRGZtSAAOFLQ%40mail.gmail.com.
FWIW, our data viewer solves this by just recursively creating event listeners all the way down the tree, so we get granular events no matter what changes. The client is generally good about handling tons of listeners, so this works out fine, even for moderately large datasets.