6325acd183
* update db:schema due to migration * reduce default concurrency for redis connection limit * Allow auto update packages in the development mode without building image * add sidekiq support to docker-compose * Pass sidekiq cofig file * passed the env file in base image rather than separately in rails, web packer and sidekiq in docker-compose * removed un-necessary changes in schema * changed concurrency to finer values * removed default size set in sidekiq redis config * Added the sidekiq config option in Procfile.dev Co-authored-by: Sony Mathew <ynos1234@gmail.com>
12 lines
328 B
Ruby
12 lines
328 B
Ruby
sidekiq_redis_config = {
|
|
url: ENV.fetch('REDIS_URL', 'redis://127.0.0.1:6379'),
|
|
password: ENV.fetch('REDIS_PASSWORD', nil)
|
|
}
|
|
|
|
Sidekiq.configure_client do |config|
|
|
config.redis = sidekiq_redis_config.merge(size: 5)
|
|
end
|
|
|
|
Sidekiq.configure_server do |config|
|
|
config.redis = sidekiq_redis_config.merge(size: 10)
|
|
end
|