I was working for EllieMae, to build their cloud platform. They were not happy with the performance of the product, though it reduced ops work.
Ask HN: Have you shipped anything serious with a “serverless” architecture?
51–60 of 207 posts
Re: Ask HN: Have you shipped anything serious with a “serverless” architecture?
#52Re: Ask HN: Have you shipped anything serious with a “serverless” architecture?
#53Listen to I just have to say this for everybody else out there there is no serverless design it's not like the fucking things running in JavaScript on the clients there are servers the whole name is stupid come up with a better name for service man it's not serverless God help us
Re: Ask HN: Have you shipped anything serious with a “serverless” architecture?
#54Re: Ask HN: Have you shipped anything serious with a “serverless” architecture?
#55Re: Ask HN: Have you shipped anything serious with a “serverless” architecture?
#56I can't name any names for obvious reasons or give you more hints about what industry this company is in but I just did DD on a very impressive outfit that ran their entire company on Google's cloud platform, it held about 500T of data and held up amazingly well under load. I was super impressed with how they had set this all up and they were extremely well aware of all the limitations and do's and dont's of that par…
Re: Ask HN: Have you shipped anything serious with a “serverless” architecture?
#57We did. We are building our entire company: SQQUID on 100% serverless architecture. Scalability is awesome, in fact we had to do extra work to serialize some operations in order not to bring down other major corporation's server stack. Cost is a fraction of the traditional app scaling setup. The best part is no devops needed. We use Serverless Framework. The biggest downside are cold starts for frontend response time…
Re: Ask HN: Have you shipped anything serious with a “serverless” architecture?
#58I have spent the last year and a half building a completely serverless production service on Lambda, API Gateway, and DynamoDB (along with the standard auxiliary services like CW, SNS, Route53, S3, CF, X-Ray, etc.). It was a lot of work establishing new patterns for many of the operational aspects, particularly custom CW metrics and A/B deployments with Lambda traffic shifting, but in the end everything is set up nic…
Re: Ask HN: Have you shipped anything serious with a “serverless” architecture?
#59Earlier quoted context omitted.
Yes, we're serving client web traffic directly with Lambdas via API Gateway. We have no traditional instances or non-serverless components of any kind in the core stack.
So how do you store your state? I assume DynamoDB part isn't serverless.
[1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerg...
Re: Ask HN: Have you shipped anything serious with a “serverless” architecture?
#60The "serverless" architecture is cool, but it irks me every time I hear the given name for it. For a marketing term mainly aimed at developers, I'm amazed they picked one so terrible.
I haven't done much reading up on it but it basically sounds like someone else is hosting and executing your code?