20

I have been looking at the demos of Firebase and i am amazed at the functionality and flexibility to store data online. Also looked at the AngularJS Projects tutorial on its homepage, with Firebase as the backend.

However, before starting to use it in my web application, i have few questions like:

  1. Where exactly is all my data stored?
  2. What if my data gets lost in the future due to hardware failure or any other issue?
  3. Will it be safe to rely on Firebase, for the security of my app data from hackers?
  4. What if Firebase asks payment in the future for storing or retrieving my app data?
  5. Is Firebase suitable for storing large data sets, something like 100 MB per user (not just chat data) ?

Can someone help me to clarify these questions?

shasi kanth
  • 6,987
  • 24
  • 106
  • 158
  • 1
    I think Kato pretty much nailed it below. It is secure, backed up, and freaking easy to use. And they will only ask for money if you start a paid package, your free hacker package is good to go. If you go over the number of concurrent users, it just won't return data for the newest users. – Zack Argyle Mar 03 '14 at 20:47

1 Answers1

24

Most of these questions are answered in detail on the Firebase web site.

Where exactly is all my data stored?

On secure bare-metal servers controlled by Firebase. This is the underlying point of "Platform as a Service"--you pay for Firebase's experties to build, maintain, upgrade, scale, and secure your data so you don't need a team of IT professionals to handle this.

What if my data gets lost in the future due to hardware failure or any other issue?

Any legitimate service is going to keep off-site backups, as does Firebase. You can also keep your own by fetching the data (a simple JSON object) or portions of data at any time.

Will it be safe to rely on Firebase, for the security of my app data from hackers?

Firebase implements authentication and declarative security rules for security.

If Firebase asks payment in the future for storing or retrieving my app data?

Firebase payment plans are outlined on the pricing page. Check it out.

Is Firebase suitable for storing large data sets, something like 100 MB per user (not just chat data) ?

Data structure is important when storing large data sets. Since reading 100 MB takes a long time, you'll want to denormalize and store it appropriately, retrieving only relevant portions as needed.

hellogoodnight
  • 1,989
  • 7
  • 29
  • 57
Kato
  • 40,352
  • 6
  • 119
  • 149
  • 1
    The thing is that on the Firebase website, the SLA only defines the uptime guarantee, while the ToC explicitly says, that Except as set forth in the SLA, Company does not warrant or guarantee that the Applications, Company Software or the Services will be always available or available at any particular time, secure or free from errors or defects.` To me it means, that we should not rely on the backup strategies of Firebase as well as assume that the data could at some point be accessed by an unauthorized party. Am I wrong? – Maksymilian Majer May 27 '15 at 05:35
  • 2
    The firebase config object is plain javascript in the browser - couldn't people just copy that and use my database in their project? – Rune Jeppesen Jul 05 '19 at 09:32
  • Rene, you can set who is able to see your data in the rules (mentioned in the answer) – Beamer Jun 21 '21 at 11:08