TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Is Serverless Overkill?

5 pointsby thenorthbay10 months ago
I just can&#x27;t help observe that my developer friends increasingly build on the &quot;low-end&quot;, serverful platforms instead of serverless. Many call serverless overkill for the (commercial) apps they want to build. Will this be an ongoing trend?<p>In recent years, many new serverless service providers have been released for everything (Neon – Postgres, Cloudflare D1 – SQLite-like DB, GCP Functions, Vercel edge functions, etc.). However, people have been complaining about their complexity and overkill in the beginning.<p>More recently, I&#x27;ve witnessed friends prefer serverful providers for their apps because they offer more control, and are cheaper and simpler to get started with (their words). Serverful platforms like Render, Railway, or Fly.io have also become a bit more popular.<p>Both approaches come with their trade offs and limitations, especially at different scale and costs.<p>So, which way, western man: is Serverful the Future? Quo vadis, web development?

8 comments

muzani10 months ago
It&#x27;s actually the reverse, to my understanding. Serverless is great for low utilization projects. Then cloud servers like EC2. Then those old school hosts with cPanel. Then running everything from your own physical servers, setting up your own backup diesel generators, putting a server in Antarctica, etc, etc.<p>As tech progresses, it makes the abstraction levels better for those who need less power.
re-thc10 months ago
Has &quot;serverful&quot; ever left the party? When was it less popular? On youtube or twitter? Has serverless spending actually overtaken the world?<p>Nothing has shifted. It might have gained some market share but that&#x27;s about it.
评论 #40999734 未加载
taylodl10 months ago
Serverless enforces good architectural practices and is just fine for <i>at least</i> 80% of systems. By &quot;just fine&quot; I mean it leaves room for growth, puts you on a good architecture, and will have reasonable cost.<p>There are times though when serverless may not be a good idea:<p>- Atypical technology stack. If the stack you need, and actually need, isn&#x27;t accounted for then you&#x27;re on your own.<p>- Continuous, 24x7 application load. You&#x27;ll have to do the cost analysis, but you may find you&#x27;re better off provisioning a server.<p>- You want to &quot;lift and shift&quot; existing assets into the cloud.<p>Brand-new, greenfield project? Consider serverless first.
评论 #41002471 未加载
评论 #41000627 未加载
verdverm10 months ago
When using serverless, you are paying more for the devops and other simplifications. Eventually the costs can outway the benefits, have seen this many times. Serverless has its place, but it is not going to usurp cloud computing norms.<p>I&#x27;d also say things like Neon &quot;serverless postgres&quot; is not really serverless. It is using serverless as the de jour marketing term for managed postgres SaaS. I can get the same thing from GCP (Cloud SQL) for much less
评论 #40999825 未加载
PaulHoule10 months ago
I&#x27;ve built some very small and simple systems in AWS Lambda such as email newsletter scripts. With a system like that I can get close to 100% reliability, never worry about the server crashing or overloading. My RSS reader answers webhooks with Lambda -- some of these systems have been cruising for years without maintenance.
评论 #41002140 未加载
delanyoyoko10 months ago
In my opinion this depends on your goals, motivations and probably your level of exposure.<p>Serverless or serverful any will get the job done.
billconan10 months ago
I don&#x27;t like serverless development, because I need to rely on logging more and there is deployment overhead.<p>But for personal projects, I like its charge-by-usage model. I want my projects be cashflow positive.
downrightmike10 months ago
We need serverless 2.0 to make it a decent system.
评论 #41017012 未加载