我通过运行
使用shoryuken gembundle exec shoryuken -R -C config/shoryuken.yml
和shoryuken.yml是
concurrency: 25
delay: 0
queues:
- [development_high, 30]
- [development_mid, 6]
- [development_low, 2]
这很好用。但是,我想使用特定于环境的队列,例如在生产中使用production_high
。
我确保这些队列存在于
config/initializers/aws.rb
使用
%w(low mid high).each do |q|
sqs.create_queue(queue_name: Rails.env + '_' + q)
end
答案 0 :(得分:1)
一种可能的解决方法是使用
concurrency: 25
delay: 0
queues:
- [<%=ENV['RAILS_ENV']%>_high, 30]
- [<%=ENV['RAILS_ENV']%>_mid, 6]
- [<%=ENV['RAILS_ENV']%>_low, 2]
并以
开始shoryukenRAILS_ENV=development bundle exec shoryuken -R -C config/shoryuken.yml
答案 1 :(得分:1)
我通常在开发中使用特定的配置shoryuken.dev.yml
。
对于正在开发的队列,我强烈建议为每个开发人员创建一个用户(IAM),其中the needed permissions为资源"arn:aws:sqs:::${aws:username}-*"
,然后在配置- [<%= aws_user_name %>_queue_name, 1]
中
如果您使用的是ActiveJob,请查看inline
选项。可能是另一种选择。
最后但并非最不重要的是,您还可以在运行时添加队列,请检查this。