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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: What production features have you built using AWS Lambda/Serverless?

10 点作者 sriram_iyengar超过 7 年前

12 条评论

jpetersonmn超过 7 年前
I've been using it for lots of things lately. The last thing was to process ebs volumes that get left behind when leostream deletes instances from it's pools. (we need fresh machines all the time, so that's why we delete these instead of re-using) We have it delete the machine from the pool, and the ami is set to not delete the volume. I use a cloudwatch event to detect this, spin up a new ec2 instance, attach the available volume, process some logs from it and then delete the new ec2 instance along with the volume.
评论 #15779954 未加载
pesfandiar超过 7 年前
I use it for a private photo&#x2F;video sharing application. It has a dozen users, so may not qualify as &quot;production&quot;, but I haven&#x27;t had to look under the hood for almost a year now.<p>I use Lambda specifically for creating thumbnails. My blog post about it: <a href="http:&#x2F;&#x2F;www.pesfandiar.com&#x2F;blog&#x2F;2017&#x2F;03&#x2F;10&#x2F;serverless-photo-sharing-app-aws" rel="nofollow">http:&#x2F;&#x2F;www.pesfandiar.com&#x2F;blog&#x2F;2017&#x2F;03&#x2F;10&#x2F;serverless-photo-s...</a>
评论 #15774566 未加载
bauerd超过 7 年前
Not sure if this counts as a production feature but I use Lambda as a Sendgrid webhook handler to calculate&#x2F;update some custom fields in a CRM in response to email events. Basically Zapier on steroids
sheraz超过 7 年前
1. Contact forms and newsletter signups for static html sites.<p>2. Endpoint for collecting anonymous usage stats in our apps.
scalesolved超过 7 年前
I used AWS Lambda with API Gateway to provide a single API endpoint allowing other services to exchange authentication keys for new tokens.<p>The functionality was so small and temporary it was great to be able to not need to provision anything and not even pay (our usage is under the free tier).<p>The regex to deal with error handling and API GW in general were pretty clunky. The Lambda was a self contained and unit&#x2F;integration tested Java project.
评论 #15779955 未加载
QuinnyPig超过 7 年前
I write LastWeekinAWS.com using an entirely serverless workflow. DynamoDB holds the links, populated through a scheduled Lambda function that pulls them in from Pinboard. Lambdas handle building out the newsletter from a Jinja2 template, building the archive on a schedule, and injecting static headers into the CloudFront distribution.
评论 #15774573 未加载
rkwz超过 7 年前
I use it to selectively run e2e tests for a particular git feature branch<p>Add a specific label in Github PR =&gt; Listen to Github PR webhook =&gt; Trigger e2e tests in CI for that branch
human-factor超过 7 年前
We built the entirety of the Give to Lincoln day giving day website using AWS lambda and DynamoDB. This includes tracking nonprofit registration, handling donations, and an admin area for managing the giving day.<p><a href="https:&#x2F;&#x2F;www.givetolincoln.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.givetolincoln.com&#x2F;</a>
quickthrower2超过 7 年前
Pdf manipulation, e.g. transforms, thumbnails, etc. This is on Azure Functions which is equivalent to Lambda.<p>Nice things scalability, not taking down the site if there is a segfault, and cost. Can run a smaller webserver and PAYG on the functions overall it costs less.
iurisilvio超过 7 年前
I&#x27;m using it as a proxy with IP rotation. It is not a perfect solution, but solved my problem more than one time.<p>It is a lot cheaper than a &quot;proxy as a service&quot;.
评论 #15775639 未加载
kostarelo超过 7 年前
I have two products already running exclusively on AWS Lambda as we speak. One of them now counts over 200 Lambdas and is being developed by three engineers.
rpaliwal71超过 7 年前
I use Viasocket.com to build the hacks. I use my signup date in Sendgrid, Google sheet, Alexa API, Woodpeaker, saleshandy and many more.