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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Modern Serverless Job Schedulers

24 点作者 danfarrelly超过 2 年前

5 条评论

teeray超过 2 年前
Ho hum. Another inbound marketing page with an interesting premise that turns out to be “we run all of the traditional infrastructure for you, and you pay us a lot.”<p>I think event-driven job processing is an interesting idea… it reminds me of Redux. If the pattern is interesting, it should be independent of a particular implementation of it.
joshmanders超过 2 年前
Interesting. After having ran into an issue with having background jobs on Next.js apps that aren&#x27;t just the frontend but utilizing the API aspect too, I ended up implementing a similar setup utilizing a queue service and a wrapper that allows me to &quot;dispatch&quot; a job anywhere in my app, that dispatched job has all the meta data needed, store it in redis like any other queue service built on redis does, but instead of a worker pulling from a queue bucket in the queue system and running it in a handler in the worker, the worker just pulls from the queue based on the job settings and essentially does a fetch call to an API endpoint to process that job.
mike_hock超过 2 年前
The good old virtually-irreplacable-core-component-as-a-service model.
评论 #33011691 未加载
tmikaeld超过 2 年前
Isn&#x27;t it cheaper to just use cloudflare worker cron to do the same thing, with logs, history, custom hooks etc?<p>Also, without unknown resource cost after limits are reached.
latchkey超过 2 年前
GCP Cloud Scheduler calls a GCP Cloud Function. Super easy (well documented), scalable, very little lock in, and not expensive at all.<p><a href="https:&#x2F;&#x2F;cloud.google.com&#x2F;scheduler&#x2F;docs&#x2F;tut-pub-sub" rel="nofollow">https:&#x2F;&#x2F;cloud.google.com&#x2F;scheduler&#x2F;docs&#x2F;tut-pub-sub</a>