+ All Categories
Home > Technology > Database, data storage, hosting with Firebase

Database, data storage, hosting with Firebase

Date post: 15-Apr-2017
Category:
Upload: tu-pham
View: 398 times
Download: 4 times
Share this document with a friend
26
Database, Data Storage & Cloud Hosting With Firebase -- Tu Pham --
Transcript
Page 1: Database, data storage, hosting with Firebase

Database, Data Storage & Cloud Hosting With Firebase

-- Tu Pham --

Page 2: Database, data storage, hosting with Firebase

Who Am I ?

● Pham Phuong Tu● Google Developer Expert on Google Cloud Platform● Co-Founder @ Dyno.me - Email Marketing Online SaaS ● Data Engineer @ Posify.vn - Customer Loyalty Platform

Page 3: Database, data storage, hosting with Firebase
Page 4: Database, data storage, hosting with Firebase

Firebase Features

● Analytics● Grow

○ Notifications○ App Indexing○ Dynamic Links○ Invites○ AdWords

● Develop○ Real time Database○ Storage○ Hosting○ Cloud Messaging○ Authentication○ Remote Config○ Test Lab○ Crash Reporting

Page 5: Database, data storage, hosting with Firebase

● Real time● Offline● Accessible

Firebase Real Time Database

Page 6: Database, data storage, hosting with Firebase

Real Time Database

● Sync changed data with all devices in milliseconds● Cloud-hosted NOSQL database ● Store data in JSON format● Websocket protocol

Page 7: Database, data storage, hosting with Firebase

Offline

● Persists data to disk● Once connectivity is reestablished, the client device

receives any changes it missed, synchronizing it with the current server state.

Page 8: Database, data storage, hosting with Firebase

Accessible From Client Devices

● Mobile SDK: Android, IOS● Web SDK: Angular, Ember, React, Ionic, ...● Restful API

Page 9: Database, data storage, hosting with Firebase

Data Structure

Page 10: Database, data storage, hosting with Firebase

Demo

● Firepad: https://demo.firepad.io/#BBG2016● Office mover: https://office-mover-demo.firebaseapp.

com/

Page 11: Database, data storage, hosting with Firebase

Firebase Storage

● Robust● Secure● Scalable

Page 12: Database, data storage, hosting with Firebase

Robust

● Robust uploads and downloads in the background● Auto restart where stopped, saving time and bandwidth

Page 13: Database, data storage, hosting with Firebase

Secure

● Integrated with Firebase Authentication● Allow access based on filename, size, content type, and

other metadata

Page 14: Database, data storage, hosting with Firebase

Scalable

● Petabyte scale data storage backed by Google Cloud Storage (powerful, simple, and cost-effective object storage service)

● API access throughout Firebase or Google Cloud Storage APIs

Page 15: Database, data storage, hosting with Firebase

Firebase Storage Dashboard

Page 16: Database, data storage, hosting with Firebase

GCP Storage Dashboard

Page 17: Database, data storage, hosting with Firebase

● Secure connection● Fast content

delivery● Rapid deployment● One-click rollback

Firebase Hosting

Page 18: Database, data storage, hosting with Firebase

Secure Connection

● Automatically provisioned SSL certificate● Content is always delivered securely

Page 19: Database, data storage, hosting with Firebase

Fast Content Delivery

● Each file you upload is cached on SSDs at CDN edges around the world

● Support for client-side routing

Page 20: Database, data storage, hosting with Firebase

Rapid Deployment

● Firebase CLI tool● Make your app up and running in seconds

Page 21: Database, data storage, hosting with Firebase

One-click Rollbacks

● Provides full versioning and release management● One-click roll back feature

Page 22: Database, data storage, hosting with Firebase

Do It Now

● Firebase CLI○ firebase init○ firebase use fir-firebase-2d196○ firebase deploy

Salud!!! https://fir-firebase-2d196.firebaseapp.com/

# firebase.json{ "hosting": { "public": "public", "rewrites": [

{ "source": "**",

"destination": "/index.html" } ]

}}

Page 23: Database, data storage, hosting with Firebase

Do It Now

Page 24: Database, data storage, hosting with Firebase

Firebase With GCP

● Backend logic● Message queue● Big data● CDN

Page 25: Database, data storage, hosting with Firebase

Resources

● https://github.com/firebase/firebase-tools● https://github.com/firebase/examples● https://firebase.google.com/docs/…● https://firebase.googleblog.com● https://www.youtube.com/user/Firebase

Page 26: Database, data storage, hosting with Firebase

Q & A


Recommended