--
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-talk+unsubscribe@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/40925e45-d7d5-4df4-9fb9-aa111a654ca1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi Manish,
As I know, If this happens, write a data to the database should resolve it. It's a knowing issue and I hope Firestore team have already fixed it.
Tim
Hi Manish,We publish all known service disruptions to the status page. No known issues at present.I'd recommend logging as much as possible and making sure you're handling/logging all errors (use .catch() on your promises) to see if we can get some more detail.☼, Kato
On Wed, Oct 11, 2017 at 4:48 AM, Manish Malik <dotm...@gmail.com> wrote:
Hi,(I know Firestore is in Beta - but trying to get a confirmation that Firestore team knows about this).Did Firestore experience some hiccups for a subset of users a few hours back (and still continuing)? A few hours ago, suddenly, the get()s stopped responding for me - the Promise just won't return at all. I opened the console (web) browser, and saw the same behavior - the spinwheel for loading would just keep spinning and not return when I clicked on any data item.I asked around in the Slack channel, and at least one person responded that it was working fine for them.Few hours later (now), it has started fine for my account, but another person in Slack is seeing the same issues.Firebase status page doesn't show any partial service disruption. Is the Firestore team aware of any issues here?Best,Manish
--
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/40925e45-d7d5-4df4-9fb9-aa111a654ca1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
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-talk+unsubscribe@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/73383de3-2a61-41b9-ae07-b78181ea0da5%40googlegroups.com.
Hey all,Thank you for the additional feedback! We've been discussing this issue internally and believe we understand the root cause are working on a fix. Unfortunately it will likely take ~2 weeks for the fix to be fully rolled out to production. For now, as you've noticed, doing a write should "fix" your hung queries, so hopefully that keeps you from being completely blocked. Feel free to reach out if anybody is still blocked or has additional insight into how they're hitting this issue, etc.Thanks again for the feedback and sorry for the inconvenience!-Michael
On Mon, Oct 16, 2017 at 1:43 AM, Manish Malik <dotm...@gmail.com> wrote:
Update: It happened again today (~ 8.15 AM GMT). I tried what Tim had mentioned - put a write to the Firestore database, and voila - all the hung get()s suddenly started working. I even got a console.log() statement I had put in a get() which started more than couple of minutes ago.Weird, but got my development unblocked for the moment.
On Monday, October 16, 2017 at 3:48:20 AM UTC+5:30, Manish Malik wrote:It happened again on Sunday (15th Oct ~ 06.30 GMT) and I was able to record a GIF of what I observed in the firebase console: https://cl.ly/3Z3i3H261o2Q/Screen%20recording%202017-10-15%20at%2012.17.27%20PM.gif
Note the absence of any exception logs (I also captured the browser console in that recording) - this is consistent with my JS sdk logs because the API promise never comes back to either then() or catch() at all - it just hangs forever.
The situation is back to normal for me now after few hours (as it happened last time) - but the recording above will give firebase team a glimpse into what we are observing.
Thanks,
Manish
--
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.
var estimate_doc = db.collection("estimates").doc("XXXXX");
estimate_doc.get().then(function(doc) {
if (doc.exists) {
console.log("Got estimate:", doc.data());
var estimate = doc.data();
estimate["id"] = doc.id;
var contact_doc = db
.collection("contacts")
.doc("XXXXXX");
contact_doc.get().then(function(doc) {
console.log("Document:", doc.data());
if (doc.exists) {
console.log("Document data:", doc.data());
var contact = doc.data();
} else {
console.log("No such document!");
}
});
}
});To unsubscribe from this group and stop receiving emails from it, send an email to firebase-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/381ab185-c28a-4d1d-96c8-99d7e6b2ea84%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to firebase-talk+unsubscribe@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/8ed4d3e9-7976-4925-8c0c-87f0c3be8bb2%40googlegroups.com.