Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Show HN: Majority – Find new music and vote on your favorites(majority-eight.vercel.app ↗)
    discuss
  2. Warren Buffet's last Berkshire letter: "Father Time always wins." [pdf](berkshirehathaway.com ↗)
    discuss
  3. What Using AI Therapy Gets Wrong(emilylee293105.substack.com ↗)
    discuss
  4. Show HN: Jev beats Astra, fable, Opus at RF engineering task(twitter.com/cohavygal ↗)
    discuss
  5. An Empirical Study of Harness Design for Coding Agents(arxiv.org ↗)
    discuss
  6. The Trap of "Phantom TAM"(marketinvestigation.beehiiv.com ↗)
    discuss
  7. I Tried to Leave the Terminal Eight Times. The Ninth Stuck(thoughts.jock.pl ↗)
    discuss
  8. Germany turns on Brussels as Chinese car sales on track to exceed 1M in 2026(euronews.com ↗)
    1comments
  9. Vulkan Documentation Project(vulkan.org ↗)
    discuss
  10. Gabor Fields: Orientation-Selective Level-of-Detail for Volume Rendering(arcanous98.github.io ↗)
    discuss
  11. 12-Factor Agents – Principles for building reliable LLM applications(github.com/humanlayer ↗)
    discuss
  12. Handling 100M time series with Arrow, Parquet, and object storage(parseable.com ↗)
    discuss
  13. TLDR; what the heck is Jev?(jrzs.dev ↗)
    discuss
  14. C++26: Trivial infinite loops are no longer undefined behaviour(sandordargo.com ↗)
    discuss
  15. DJ Shadow looks back at "Entroducing" and other early work(msn.com ↗)
    discuss
  16. When the Debugger Lies(danielmangum.com ↗)
    discuss
  17. Putin envoy and far-right AfD prepare talks to get Russian gas back for Germany(reuters.com ↗)
    discuss
  18. Maker's Schedule, Manager's Schedule(paulgraham.com ↗)
    discuss
  19. Clocky: Alarm clock on wheels that runs away from you(clocky.com ↗)
    discuss
  20. Show HN: Bastionskill – scan an AI agent skill for malicious code
    discuss
  21. The Return of the Utah Teapot – Siggraph 2026 [video](youtube.com ↗)
    discuss
  22. AI eyes in the sky: New satellites and AI transforming wildfire detection(theguardian.com ↗)
    discuss
  23. Sales calculation tool for Excel price lists
    discuss
  24. Qbix Server – PHP 100× faster than Nginx and PHP-fpm(github.com/qbix ↗)
    discuss
  25. The Input Layer(mg-crea.com ↗)
    discuss
  26. Show HN: Explore 2D semantic space with the Jev model(semanticspace.dev ↗)
    discuss
  27. King Charles has hesitations about AI(techcrunch.com ↗)
    discuss
  28. The Harms of Modern Lighting and the Fight to Bring Back Incandescent Bulbs(midwesterndoctor.com ↗)
    discuss
  29. Show HN: Using a diffusion model to write docs quickly(cortee.ai ↗)
    discuss
  30. Making a game for the GBA and PC from the same codebase(mattgreer.dev ↗)
    discuss

Ask HN: Help choosing between AWS ECS and EKS

4 pointsby 2h ago
4 comments
Hello everyone. I was recently hired at an established company that is in the process of migrating to AWS from Heroku. I am the second devops/SRE like employee, the other person has more of an IT background. He, along with the 20ish person dev team, have no experience with anything cloud or IaC. Our workloads are almost entirely stateless web services, with some data pipeline work that has already been moved to AWS lambda.

My gut is telling me ECS is the better choice for this team - simpler, no operational maintenance, almost no additional abstractions beyond the AWS primitives people will need to learn anyway. A consulting team hired before I was brought in are pushing EKS, but I’m not convinced that the improved devex is worth the increase in complexity and operational burden for our team. Their argument is that developers can be effectively quarantined within k8s, so the increase in maintenance on the cluster itself is offset by the reduction in work around custom IAM permissioning, multiple AWS accounts (we’d just use namespaces within the cluster), etc.

Any thoughts or input would be greatly appreciated.

1h agoHN ↗

ECS Fargate. We used it for a lot of stateless containers, similar as you mention. I tried to migrate from ECS Fargate onto EKS, but moved back after a while. The reason was the "management" overhead of babysitting the cluster and it's non-app deployment like cilium, fluxcd etc. - Since those were part needed and part QoL features we came to the conclusion that ECS Fargate was the better and less 'head ache' solution. I would do it again. Especially not thinking about provision new nodes etc.

Sure you pay for that comfortable solution, but it was worth in my opinion

1h agoHN ↗

Go with ECS if you don’t need Helm and significant operational overhead. Having used both ECS and EKS for the past few years, I’ve found that ECS requires negligible maintenance.

BTW: Checkout ecs fargate too. if workload is small this will do the most.

1h agoHN ↗

If you don't need anything beyond the feature set of ECS and are happy to stick with AWS for the foreseeable future, then I'd advise you to listen to your gut - EKS is more complex, and needs a bit more looking after.

Personally, I'd disagree with your consultants on being able to avoid multiple AWS accounts as a selling point. When you need to isolate workloads or implement hard security boundaries, accounts are generally the simplest and most reliable way of doing that. Following the Well Architected Framework is a good standard practice and there are plenty of guides and examples to help you.

If things do change in the future, it's not actually that big a deal to deploy to EKS instead (or as well) - but for your needs, I think ECS would make a better starting point.

(And I agree with other posters that ECS Fargate is likely the best fit for you)

30m agoHN ↗

Don’t argue with the consultants.

It is not a hill worth dying on.

And you don’t know the big picture, but the little picture is everyone agreed the consultants were the right way to decide before you were there; arguing implies the people who sign contracts and write the checks are wrong; and business decisions are about the whole business and engineering exists to support the business - not to optimize itself.

To put it simply, the decision has been made by people with more experience in your organization’s culture, more authority, and a better understanding of the business as a whole.

Plus your here on HN because you have not convinced the stakeholders.

Good luck.