Reputation: 41
Let me breakdown of what happened. Yesterday I tried to insert some videos from firebase realtime database to my app in the form of recyclerview and the first 2 testing with my physical device, it went fine but then during the third time testing, my app suddenly didn't work and when I checked what was going on, It said this."V/FA: Inactivity, disconnecting from the service" Then when I went into further analysis I soon came to realize it had this error as in the code.
{
"error": {
"code": 402,
"message": "Quota has been exceeded for this project. Please visit the Firebase pricing page to
learn more.",
"status": "ACCESS_BUCKET"
}
}
Im very sure that my storage is less than 100 mb but yet I got this result. However, today it's back working but I want to know what kind of action would invoke this error provided that I have ample of storage that is yet to be used.. Any help to clarify the issue that I went through would be much appreciated.. Thanks in advance
Upvotes: 2
Views: 9202
Reputation: 598708
There are more quota than just the total size of the bucket. From the pricing page:
Storage
GB stored: 5 GB
GB downloaded: 1 GB/day
Upload operations: 20K/day
Download operations: 50K/day
Given your description you exceeded one of the daily limits, likely the bandwidth usage, which is 1 GB/day. That would also explain why it started working again on the next day.
Upvotes: 1