Introducing Cloud Functions for Firebase
121–129 of 129 posts
Re: Introducing Cloud Functions for Firebase
#122Earlier quoted context omitted.
Right, how many of those do exist with an internal architecture that will fit the Lambda model?
I'm curious more generally why would somebody use Lambda at all? Surely its far more expensive than running on your own servers (or instances), no?
Re: Introducing Cloud Functions for Firebase
#123Earlier quoted context omitted.
Yeah, I remember when Parse offered these cloud functions back in 2012... It was a game-changer for "Backend-as-a-Service."
Wait till Google axes Firebase with no warning How many times can devs be burned, are we all masochists or just not have any memory of the last project that offered all this
Re: Introducing Cloud Functions for Firebase
#124Earlier quoted context omitted.
No. All events are asynchronous. This use case is best simulated by having clients post to a queue. Cloud functions then either discards or applies writes in that queue.
You should add this technique to the docs! It makes you realize that the Cloud Functions feature is a lot more powerful than you might initially think.
Re: Introducing Cloud Functions for Firebase
#125Earlier quoted context omitted.
Image magick's binaries are already installed on the image. Any native binary node module that has a preinstall script should work too. If you hit an unsupported syscall error, contact firebase support at firebase.google.com/contact/troubleshooting and we'll triage.
404. That's an error. The requested URL was not found on this server. That's all we know.
Re: Introducing Cloud Functions for Firebase
#126This looks like a worthy competitor to AWS Lambda, but I'm disappointed by the unalterable limit of 400 concurrent invocations of a function. (The "Quotas" page says "Max concurrent functions" is 400, with "Can be increased" as "No." https://cloud.google.com/functions/quotas ) One of the cool things about AWS Lambda is that you can use it as a short-term supercomputer with thousands of threads. We (Stanford/UCSD ExCa…
[1]https://docs.aws.amazon.com/lambda/latest/dg/concurrent-exec...
[2]https://docs.aws.amazon.com/lambda/latest/dg/limits.html#lim...
Re: Introducing Cloud Functions for Firebase
#127Earlier quoted context omitted.
Really, which percentage of clients will need more than that?
Any service with more than 400 users that want to run a batch process for each user in constant time with respect to number of users.
Re: Introducing Cloud Functions for Firebase
#128If only Realm made their server-side scripting available for free (or much less than the $1.5k/mo they're asking for Enterprise). That would give Firebase a run for their money.