Viewing profile — garethmcc
garethmcc
HN member- Joined
- Thu, Nov 22, 2018, 8:45 AM UTC
- HN karma
- 29
- Public activity
- 43 items
- HN profile
- View on Hacker News ↗
About garethmcc
Recent public activity
-
comment
Comment #38040241
The difference is that the model is based on usage not seats and revenue is going to be shared with builders of extensions used by users of the framework (80% of the revenue) to he…
-
comment
Comment #31682285
The "bankrupt your company with the wrong keystroke" is not entirely accurate. AWS does work with companies (or even individuals) if they genuinely made an error that wracked up a …
-
comment
Comment #30025072
I have watched almost all those talks as they are technically dense and full of very good and very useful technical knowledge that I would be much poorer for not watching. These ar…
-
comment
Comment #29635562
Have you looked at the recent crop of Serverless rechnologies that rtuly abstract away even considering the underlying hardware platforms. I am talking about tools such as Serverle…
-
comment
Comment #29579855
I have worked with many teams and found lambda to be by far more cost effective. Did your calculations include the time lost waiting to deploy solutions while infrastructure gets s…
-
comment
Comment #29550436
This is where using a tool like the Serverless Framework helps solve a lot of these problems: - Use async/await promises instead and the specific plugin for the Serverless Framewor…
-
comment
Comment #29263838
I agree somewhat, but its a little more nuanced. Right up front, you could absolutely get infrastructure setup yourself using things like EC2 etc that would eventually be cheaper w…
-
comment
Comment #28659712
FaaS has been remarkably good for many companies with very late stage products running with very large numbers of users for a very long time. The speed of development even in a mat…
-
comment
Comment #28304456
Non-relational databases match one of the largest use cases that exist; large volume OLTP workloads. Non-relational databases typically can handle far more load on reads and writes…
-
comment
Comment #27832703
Not to mention that that same infrastructure you say is in abundance is usually pretty heavily utilised already so there isn't just spare capacity lying around. Procuring new hardw…
-
comment
Comment #27832677
Its not as simple as that. Just because its the case of "we have lots of old stuff" doesn't mean you need to ignore the new stuff. Building solutions with traditional data centers …
-
comment
Comment #27273671
This happened to me once and AWS entirely reversed the charges no questions asked. And its really something you don't need to worry about. AWS makes more than enough money off of l…
-
comment
Comment #26863692
Hi tdfirth. I am with the team at Serverless, Inc, creators of the Serverless Framework. I can totally understand the frustration, especially with new development architectures suc…
-
comment
Comment #26565066
Oh yes, and serverless is not just Lambda, its a about the whole suite of cloud services you combine together to build your solution.
-
comment
Comment #26565064
This is not entirely true. Firstly because Lambda keeps getting cheaper with the move from per 100ms billing to pwe 1ms being a big contributor. but also that I see organizations h…
-
comment
Comment #25846088
EC2 is a managed solution but you still need to manage servers.
-
comment
Comment #25838662
I am curious what made you unsatisfied. As a member of the Serverless team I'd love to hear the feedback so we can potentially improve the experience for you and others.
-
comment
Comment #25534765
Shipping value is important. If you can build a solution faster in a monolithic, MVC style framework running on EC2 instances, then do that. I think people get too bogged down in t…
-
comment
Comment #25534690
I have been building JAMstack apps since 2016 using exactly the stack you are asking about. Using something like the Serverless Framework to help you build and deploy your collecti…
-
comment
Comment #25292422
I am not entirely sure this is correct. There are definitely ways to delete or update data.
-
comment
Comment #23640763
Serverless Framework. And you have some choices. You can use the serverless-express component to just get Express deployed into Lambda: https://github.com/serverless/components#ser…
-
comment
Comment #23548479
If you use a tool like the Serverless Framework, you can trigger Lambda functions off of many different events, includinmg a schedule: https://www.serverless.com/framework/docs/pro…
-
comment
Comment #23548472
I just want to add in about version controlling Lambda code, this is entirely possible using the available tooling with something like the Serverless Framework at serverless.com
-
comment
Comment #23548465
Not entirely true. The largest use case we see for Lambda is as the compute service for an API backend provisioned with API Gateway (so a full application backend) with synchronous…
-
comment
Comment #23548450
There are an enormous number of people using Lambda's as a part of very complex workloads including customer facing platforms. Your specific use case of 100 000 incoming requests i…