I’m super appreciative that these videos present a fair view of Firebase in that they are very clear about the shortcomings or negatives. It actually makes me feel more confident about using it for my future development as I know exactly what I’m getting into.
@arnavbansal90506 жыл бұрын
Firestore is AWESOME. I recently used it in an application for triaging help requests from the Kerala floods. My design required generating scores from every request document, and this design did lead to some costs, since I was reading several thousand documents every query. I wish I'd watched this video, since Cloud datastore might have been a better match. But Firestore scaled well nevertheless, and I was able to handle more than a thousand users in an emergency situation. I paid nothing, since the costs were super low, and I was on the GCP trial.
@JamesSwansburg5 жыл бұрын
I agree, Todd does an excellent job! I am binge watching the whole series.
@jjyutube9 ай бұрын
This guy is amazing, the video is not only informative, it is just fun to watch. Boring topics made not boring to watch anymore.
@LifeyApp6 жыл бұрын
I love the animation and humor! Good work
@chriscurnow1436 жыл бұрын
This was indeed a great, useful and easy to listen video. Todd, you are a natural in front of the camera. Just a tiny little thing though. It's now August and we are really missing you. We want more of you.
@kathryntilley10726 жыл бұрын
I'll second that! When's the next video coming?
@johnhanley2431 Жыл бұрын
One of the items that impresses me about Google Cloud is the excellence of their speakers. I enjoy watching Google Cloud videos. The skills required to merge technical information with engaging speakers is very hard.
@gforever10009 ай бұрын
Love this guy, the way he presents the info and video editing is so good
@codinginflow4 жыл бұрын
This guy's jokes always crack me up
@kaibe5241 Жыл бұрын
lol, these videos are both educational and actually quite humourous. The legalise at the start was awesome :D
@LupeKnoble2 ай бұрын
The daily limit spending in the app engine section has been removed.
@olusolaoyinloye24264 жыл бұрын
"Could you be quiet? i am working on a video for KZbin..." This really made me laff.... I totally love the presentation
@jose64334 жыл бұрын
this is like "We are expensive but we are not expensive"
@ben65 жыл бұрын
This is the stuff that developers talk about when they're designing something for a client, but don't tell them. Thanks!
@rodrigocaballerohurtado53674 жыл бұрын
This is first time I watch this channel (just getting started with Firebase) and your explanation really hooked me up to learn more! thanks!
@verry_codes2 жыл бұрын
Todd you are the best! Your videos are gold 🌟
@abbasali65884 жыл бұрын
This guy makes me smile now and then!! And I think that's the best of his teaching and our overall learning :)
@MrBarralex4 жыл бұрын
Man love the way this guy explains everthing 👍
@novacoax Жыл бұрын
4 years down the line and i still refer to this videos.
@javierANRA6 жыл бұрын
I've just made a cost estimation 2 days ago, and I supposed everything you told, but that was really interesting as long as you confirmed everything I was doubting about. Thank you very much, that's a great video.
@JaskoonerSingh6 жыл бұрын
thanks for the heads up. never realised it would be so expensive.
@jacobzanders5514 жыл бұрын
Fantastic video, I need more of this man in my life
@GabePannell6 жыл бұрын
NICE VIDEO! Love the added SFX!
@SolidousMdz4 жыл бұрын
Hey, was the daily limit option remove from the App Engine settings?
@burtonator5 жыл бұрын
Your example of the chat app I think is missing the option of using Google Cloud Messaging. Yes. The fan out could be expensive but you could also just rewrite it to use a GCM topic (for free) and use that for delivering real time messages. Writes would go to the DB only and would be 1/1000th of th total volume. Reads would only happen for a *new* client. Not the existing ones. The existing ones just use the GCM topic. Writes would have to go both to the database and the GCM topic.
@sankarnatarajan93432 жыл бұрын
By the way, your video presentation looks cool and informative with additional pieces of fun
@JaniceKartika6 жыл бұрын
Now finally that makes sense to have the data denormalized from the pricing point of view, so we don't need to look up to bunch of docs while performing read operations, instead we should do that while performing write operations (which is much better because write happens not as often as read). Is it right?
@LucasRizzotto6 жыл бұрын
That is precise. Most services outnumber reads to writes by several orders of magnitude.
@sal96ali3 жыл бұрын
Hi, I need your advice to get to your level of presenting skill You are so good in what you are doing Blessings
@RobertPetras6 жыл бұрын
Awesome explanation and funny video which is always a great combination. 🙌 Thanks!
@i_am_reshad28 күн бұрын
best tutorial i've ever seen specially like so much 7:32
@RobertBrunhage6 жыл бұрын
Will you implement a backup button for firestore and also upload a json / excel file with data to create a backup system?
@marlonlom6 жыл бұрын
It tooks that we must do it manually, the most common use is with NodeJs, using Firebase Admin SDK.
@RobertBrunhage6 жыл бұрын
They have import and export in the normal firebase database so would be awesome if they could add that to firestore too. It's a really needed feature.
@PaulStelzer6 жыл бұрын
I do not know when it was launched, but it's finally here -> firebase.google.com/docs/firestore/manage-data/export-import
@fahidsarker48583 жыл бұрын
This guy is awesome at explaining stuffs.
@anvsor2 жыл бұрын
Are there any aims to offer fixed price plans (e.g. $25/mo) similar to supabase?
@jackiegarlinghouse64936 жыл бұрын
This IS a really good video explaining it. Not sure I will remember it all, but very good...
@IsaacAsante176 жыл бұрын
That's an insightful video! I really needed that.
@_sr5 жыл бұрын
Could there be scenarios where we use the realtime database and the firestore together in the same project?
@mitch82046 жыл бұрын
Does "read counts" take place while reading documents offline e.g. from cache without internet on?
@Frank_van_Puffelen6 жыл бұрын
Reads from the local cache are not charged.
@ShyshkovOleg5 жыл бұрын
@@Frank_van_Puffelen Hi, Frank. If I set up realtime listener(.onSnapshot) and the cache exist, when I open my app and data didn't changed doI charged reads? Metadata.fromCache says that I do charged.
@keep6 жыл бұрын
How does StreamBuilder of Flutter affect the pricing in general? It's excellent to show the real-time data, looks more dynamic but on the other hand have to worry about the cost.
@amponsahhubert48844 жыл бұрын
Summary: If you don't want it to be expensive, try your possible best to minimize the number of reads and writes.
@sebastiandaza98265 жыл бұрын
Awesone explanation, but i have a doubt if in a transaction i create a collection a document another collection and another document related all of them (for example university -> class -> teachers approximately ), it was billed as 4 write operation or only a single write operation. Thanks in advance
@nibeditadas92024 жыл бұрын
The most caring product team ever 💙😍❤️
@andrearsenault80996 жыл бұрын
I'm going through the process of estimating the potential volume of Firestore operations for a prototype we are developing, but on the Google Cloud Console / App Engine / Quotas page there is no View Usage History button as illustrated in this video. Do you know why that is? I can do my estimates with napkin math but I'd prefer to see actual usage from testing sessions to confirm things are working as expected.
@troykoss6 жыл бұрын
Did you ever figure out a good way to do this??
@tashijawed54723 жыл бұрын
This is really genius, instead of charging for storage, bandwidth etc, charge for reads and writes. "Create the problem sell the solution!"
@premkumar-tl8yh Жыл бұрын
Hi All, can we send OTP to the mobile number by using Firebase Cloud Messaging (FCM)? If Yes, then what is the limit to send OTP per month by selecting free plan.
@wiltonyu49515 жыл бұрын
Can you recommend this for an ecommerce app? Right now im thinking its very expensive.
@monoomankar63195 жыл бұрын
Hey.. Since it has been 4 months, did you find any answer? or going with mysql and php is fine?
@mcscubin89354 жыл бұрын
These videos help to explain a lot. Thanks!
@dipakbari44 жыл бұрын
Nice, one! Is there any connection limit? I mean, how many users can connect to cloud firestore?
@dipakbari44 жыл бұрын
@@ToddKerpelmanCorp Fantastic. Thanks! 😊
@GabrielDunn-y4w Жыл бұрын
How do quotas work ? I have free 50,000, but apparently hit 50,000 reads in one day, even though I only have a few hundred records in the database, and I only ran my app once to read them.
@jitendraprajapatt3 жыл бұрын
The bandwidth is 30GB/month, enforced as a daily limit (so every 24 hour period means you're allotted 1GB of bandwidth). This limit resets every day.
@jitendraprajapatt3 жыл бұрын
how i can increase limit
@Algardraug3 жыл бұрын
Please tell me that the Egress joke is from The Wee Free Men by Terry Pratchett
@gwapster135 жыл бұрын
Great video as usual. One thing, though, somewhere around 14 mins into the video, you trigger Google Assistant. :)
@2asdfdas2 жыл бұрын
@Firebase 13:14 There is no `Usage History` tab anymore. Where can we find it now?
@danceracademy30836 жыл бұрын
is any way to add the whole list to Firestore with one request instead of calling the api as many times as the list size ??
@rohitgautam39334 жыл бұрын
I have one game "Langur Burja" in play store which is a single-player game now, I am thinking of adding multiplayer feature in it. So which database is good for me cloud firestore or realtime database??
@adamturner4483 жыл бұрын
Someone on reddit was saying that Google got rid of the ability to cap costs for Firestore/Firebase. Is this true?
@WaqadArshad7 ай бұрын
hi, if I set a document in firestore with the same data as before with merge set to true, is it considered a write?
@ChrisClayton33343 жыл бұрын
I love this guy
@sankarnatarajan93432 жыл бұрын
What would be the cost for export the data of nearly 80GB? Export to JSON file, not metadata format. If I use an external tool or app to do this, what would be the cost will be incurred for this operation after my free tier? I am using the Blaze plan, so caution with knowing the cost well before. I wouldn't get clear information anywhere.
@Firebase2 жыл бұрын
Hi! The cost for downloading data from Firestore depends on how many documents you read, not the size. You can use the Blaze plan calculator to get an estimate for your monthly costs on the Blaze plan: firebase.google.com/pricing
@memorablelyrics5 жыл бұрын
How we know that our free plan is finish.? How much data we can store in the free plan..?
@JDalmasca4 жыл бұрын
These videos are so good! I also appreciate the Simpsons reference: "it's a perfectly cromulent word!"
@manishgautam24243 жыл бұрын
Should implement/add search integration without algolia
@sasg879626 жыл бұрын
How about in the free spark plan? What happened when reached the reading or writing limits
@sourabhverma90346 жыл бұрын
It stops working, probably
@vtech64153 жыл бұрын
I like your funny animations sir. keep it up. love it and your work😊😘
@naseemsrour99673 жыл бұрын
Great videos Todd! Google should be proud to have you.
@matthewbeardsley70044 жыл бұрын
How do you set a limit to refuse requests now, I can only see setting a budget.
@rodsweis83484 жыл бұрын
@7:42 "And if the main lesson you're getting out of this is that [you don't get it], then hey, now you're getting it." Lol welcome to coding.
@learningforyou15246 жыл бұрын
This is great! Will pass on to my STUDENT!
@lanorothwolf21844 жыл бұрын
What did it cost? Everything.
@typingcat6 жыл бұрын
Fun fact: Money can actually buy happiness.
@joniler48462 жыл бұрын
I love this guy so much lol
@shripadashtekar75 жыл бұрын
Hi Could you please help me with the firestore storage billing for images? I am new to it and I want to know how it is charged. If I upload a 10 MB image and 10 users are downloading it, Will I be charged for 10MB upload and 10*10 MBs of download (which is GB Transferred)? Or will I be charged, just for upload and download operations?
@darato20155 жыл бұрын
Anyone knows more info about the storage of binary object as values to store icons and small avatars that he mentioned in the video? I can't seem to find much documentation about it online. The bytes data type is also no longer in the list to choose in Firestore. Is it because Firebase wants us to use Cloud storage instead?
@mitch82046 жыл бұрын
What will be the average cost of a cloud function set to run every 15 minutes while reading, updating and deleting cloud fire-store documents at the same time?
@MassimoTodaro745 жыл бұрын
how many words did you say in 16'22''? impressive
@mohamedyoussef88352 жыл бұрын
Awesome videos ++++++++++++++++++++ Thank you 😃
@Firebase2 жыл бұрын
Happy to hear you enjoyed the video, Mohamed! We really appreciate the awesome feedback. Be sure to subscribe to keep up with the latest from Firebase: goo.gle/3PURwHn 😎
@kameshvadivel94595 жыл бұрын
How to use 'Pay as you go' plan by using debit card? when i use my debit card, it shows error like 'Your card does not support automatic recurring payments[OR-CC3ST-02]'.i am using visa global debit card from india.
@letslearncomputerprogramming6 жыл бұрын
Can I use cloudfirestore and Realtime database in single app ?
@shangyilim6 жыл бұрын
Lets Learn yup
@rithulraj33484 жыл бұрын
Yes
@engr_mark6 жыл бұрын
Excellent! more of this from firebase team
@liam-dimpr5 жыл бұрын
When measuring Firestore usage you're now able to use the Stack Driver APIs as well as view the usage tab in the Firebase Console now firebase.googleblog.com/2019/01/cloud-firestore-in-general-availability.html
@walterlol3 жыл бұрын
Could someone explain to me 4:36. How do 1000 users become 500.000 DAU? I don't get it.
@davidt013 жыл бұрын
It was 1000 users per 3 minutes
@justinweberg6 жыл бұрын
Can you split storage across Firestore and firebase in a single app and somehow link the data clientside to save money? #askfirebase
@roberthinckley75085 жыл бұрын
I'm just trying to imagine the directions that the director gave him when trying to film 3:24.
@SlowCurry5 жыл бұрын
now i'm craving jellybeans...
@thedevguild75252 жыл бұрын
Todd: "So I don't want you to automatically panic at the worst case scenario, but I do want you to be aware of the cases in which Cloud Firestore could make you panic." Me: Rofl!
@fernandovarela18943 жыл бұрын
1:20 If you dropped a mixtape it would be Fire
@AceixSmart6 жыл бұрын
tried the free package of firestore with functions and the functions were sloowww!!
@AbhideepChakravarty6 жыл бұрын
This is unfair to count result count as read count. I get 20 result or 100, its just one read for me. Isnt it? :(
@jeancarloflorescarrasco4124 жыл бұрын
@@ToddKerpelmanCorpI have a question about my next app, let's say I have 3 categories of restaurants, for example: restaurant_categoryX, restaurant_categoryY, restaurant_categoryZ. I already know the restaurant_categoryZ has a few data and it's not frequently visited. In this case do yo recommend me to create a collection for each category in order to not get billed for restaurant_categoryX, restaurant_categoryY when I know the restaurant_categoryZ is not frequently visited?
@jeancarloflorescarrasco4124 жыл бұрын
Oh, thanks @@ToddKerpelmanCorp, I really appreciate it. I thought Firebase would bill me for all the documents that involved that query.
@emrentoelluminiadosАй бұрын
The console used to be so simple and straightforward. Moreover, setting limits and alarms were some of the most important features, but now they're gone. What am I supposed to do if malicious users attack my site and I notice it too late? There's no option to stop or disable the system. The only way is to completely delete the project, which would cut off access entirely. It's complete nonsense.
@dharmarajr244 жыл бұрын
Mutual funds are subject to market risk. Please read all scheme related documents carefully.. XD
@samyoung84703 жыл бұрын
2 min Silence from those who skipped this video RIP
@benton2024 жыл бұрын
is this still valid?
@lugardjulien53263 жыл бұрын
damn , great content
@vrowmuria Жыл бұрын
Ah.... I simply want to know what is the difference between Realtime Database and the Firestore in terms of usage.
@enkr16 ай бұрын
damn? wait i didnt expect this
@courageous-schools6 жыл бұрын
Hey its past September 1st. Come on Todd. We want more!! How can you keep us waiting so long? Don't care if it's got anything new about Firestore. We just want the humour!!
@parthaceo20906 жыл бұрын
nice vid
@marcosgalaviz49046 жыл бұрын
Very nice, could you help me a little? im trying to use Firestore with Polymer, I obtain an array to send it to polymer in a dom-repeat like this: var query=db.collection("operaciones"); db.collection("operaciones") .onSnapshot((querySnapshot) => { querySnapshot.forEach(function(doc) { }); that.operacionesPorCliente=Array.from(querySnapshot.docs.map(doc=>doc.data())); }); console.log (that.operacionesPorCliente); // this works but the ID doesnt exist here.... } that works but that array doesnt contain the id from firestore, the problem is that I need that ID to update the data :( but it isn't in the array
@josepinero29615 жыл бұрын
Why if you have a collection in the first position of the root, and that collection has 15 documents (3 fields), the readings are increased automatically, not even 15, but 30. It means that if I want to consult any collection using Chrome or Safari (it does not matter), just visualizing that collection automatically loads each document and multiplies it by 2? If I have a 'Users' collection, with a thousand documents, it means that it will increase to 2000 readings ??, ... I don't know ... At least I saw if you create a collection in the first position, with a document and with empty fields, even if the browser loads automatically the first collection (because it does), every time you consult the database, it will only count some readings. If you had a collection with 20,000 documents, in only one click or load you would spend 40000 reads?? If someone has to monitor the data in their database, he only exceeds the limits. I don't consider it fair, that the readings are counted from the console
@miabellasalonandmedicalspa28225 жыл бұрын
You just confirmed my greatest fear: firestore bill unpredictable. Not going to take a chance. Thanks!