gpt4 book ai didi

ruby-on-rails - 有没有办法在没有 cron 的情况下在设定的时间运行作业,比如预定队列?

转载 作者:行者123 更新时间:2023-12-04 05:52:57 24 4
gpt4 key购买 nike

我有一个 Rails 应用程序,我想在其中运行作业,但我需要在原始事件后 2 小时运行该作业。

用例可能是这样的:

用户发布产品列表。后台作业正在排队以向 3rd 方 api 联合列表,但即使在最初的请求之后,响应也可能需要一段时间,而 3rd 方的解决方案是每 2 小时轮询一次,看看我们是否可以获得成功确认。

那么有没有一种方法可以将作业排队,以便 worker 守护进程知道忽略它或只在预定的时间收听它?

我不想使用 cron,因为它会加载整个应用程序堆栈,并且可能会在重叠的长时间运行的作业上执行两次。

可以为此使用优先级队列吗?有哪些解决方案可以实现这一点?

最佳答案

尝试延迟作业 - https://github.com/collectiveidea/delayed_job

类似的东西?

class ProductCheckSyndicateResponseJob < Struct.new(:product_id)
def perform
product = Product.find(product_id)

if product.still_needs_syndicate_response
# do it ...

# still no response, check again in two hours
Delayed::Job.enqueue(ProductCheckSyndicateResponseJob.new(product.id), :run_at => 2.hours.from_now)
else
# nothing to do ...
end
end
end

第一次在 Controller 中初始化作业或者在模型上初始化 before_create 回调?

Delayed::Job.enqueue(ProductCheckSyndicateResponseJob.new(@product.id), :run_at => 2.hours.from_now)

关于ruby-on-rails - 有没有办法在没有 cron 的情况下在设定的时间运行作业,比如预定队列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17127506/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com