TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Is there any service on AWS that enables *INSTANT* deployment?

1 点作者 boronine8 个月前
My use case is a singleton HTTP server (no horizontal scaling). I already tried ECS, App Runner, Elastic Beanstalk among other tools. Every deployment option has minute+ downtime or otherwise takes minutes to complete. Is there any option on AWS to achieve instant deploy like Heroku? I simply want to restart my app with new code / new configuration.

5 条评论

ibash8 个月前
If you don’t need to scale and you want something simple you might try rolling your own blue&#x2F;green deployment using nginx or haproxy.<p>The basic idea is that traffic gets served by nginx or haproxy and forwarded to your app server. When you deploy another app server and background process gets spun up. Then when the new app server is ready you have nginx&#x2F;haproxy switch where it’s forwarding traffic.<p>You can do this on a regular vm and skip all the extra tooling.
评论 #41477292 未加载
fragmede8 个月前
If Heroku has what you want, why not just use them? Why waste time&#x2F;money&#x2F;energy&#x2F;effort trying to make Amazon into Heroku?
评论 #41477363 未加载
znpy8 个月前
Ecs should do what you want, you’re probably using it wrong. You should probably boot the new app first release and then shut down the old one.<p>In this way whether the startup takes one or 10 minutes is irrelevant
评论 #41477256 未加载
JSDevOps8 个月前
Docker on an EC2
nathants8 个月前
lambda update zip. few seconds.