- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
作为 AWS 的一个相对新手,根据设置文档让 Shoryuken gem(带有 Active Job 和 Active Record)工作已经有点曲线了。
irb(main):003:0> InvitationMailer.send_invite(ii).deliver_later
Enqueued ActionMailer::DeliveryJob (Job ID: 5c65184c-8656-42bd-95ce-e0ded78a9a44) to Shoryuken(development_mailers) with arguments: "InvitationMailer", "send_invite", "deliver_now", gid://projectname/Invitation/25
=> #<ActionMailer::DeliveryJob:0x007f7fad761a40 @arguments=["InvitationMailer", "send_invite", "deliver_now", #<Invitation id: 25, invite_code: "324234325", sender_id: 7, invitee_first_name: "Kylo", invitee_last_name: "Ren", invitee_email: "test128@somewhere.com", status: "sent", joined_member_id: nil, created_at: "2016-09-24 03:14:44", updated_at: "2016-09-24 04:16:36", invite_message: nil, sent_at: nil, accepted_at: nil, completed_at: nil, clicked_at: nil, source: nil>], @job_id="5c65184c-8656-42bd-95ce-e0ded78a9a44", @queue_name="development_mailers">
irb(main):004:0> Shoryuken.options
=> {:concurrency=>25, :queues=>[], :aws=>{}, :delay=>0, :timeout=>8, :lifecycle_events=>{:startup=>[], :quiet=>[], :shutdown=>[]}}
irb(main):005:0>
aws:
access_key_id: <%= ENV['AWS_ACCESS_KEY_ID'] %>
receive_message:
attribute_names:
- ApproximateReceiveCount
- SentTimestamp
region: <%= ENV['AWS_REGION'] %>
secret_access_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] %>
concurrency: 25
delay: 0
queues:
- development_mailers
最佳答案
结果是 YAML 格式不正确。 queues
不应该低于 aws
但处于同一水平。这是正确的版本:
aws:
access_key_id: <%= ENV['AWS_ACCESS_KEY_ID'] %>
receive_message:
attribute_names:
- ApproximateReceiveCount
- SentTimestamp
region: <%= ENV['AWS_REGION'] %>
secret_access_key: <%= ENV['AWS_SECRET_ACCESS_KEY'] %>
concurrency: 25
delay: 0
queues:
- development_mailers
关于ruby-on-rails - 在 Rails 项目中设置 Shoryuken、Active Job 和 Amazon SQS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39783398/
我正在使用 shoryuken gem通过运行 bundle exec shoryuken -R -C config/shoryuken.yml shoryuken.yml 是 concurrency
在我的 Ruby on Rails 应用程序中,我使用 shoryouken用于后台处理。我的应用程序中有很多 sqs 队列(6-7)。其中一个队列有 2000-3000 个作业,在默认并发数为 25
我正在迁移使用 sidekiq 制作的后台作业处理服务至 shoryuken , 这是基于 Amazon SQS .使用 sidekiq,您可以使用 sidekiq_retry_in 自定义重试模式:
我只是想实现一个后台进程(第一次),我正在寻找一个便宜的解决方案,我发现了这个 gem shoryuken ,但是没有足够的资料介绍它的设置,您知道显示 shoryuken 实际操作的教程或博客文章吗
作为 AWS 的一个相对新手,根据设置文档让 Shoryuken gem(带有 Active Job 和 Active Record)工作已经有点曲线了。 中间件 :我不确定中间件是否是设置的必要部分
我是一名优秀的程序员,十分优秀!