Skip to content

Commit

Permalink
updated README for count-of-processes-per-host
Browse files Browse the repository at this point in the history
  • Loading branch information
alexyakubenko committed Mar 31, 2015
1 parent 5628d3b commit 806cdb4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,18 @@ and `low`:
set :sidekiq_options_per_process, ["--queue high", "--queue default --queue low"]
```

## Different number of processes per host

You can configure how many processes you want to run on each host next way:

```ruby
set :sidekiq_role, [:sidekiq_small, :sidekiq_big]
set :sidekiq_small_processes, 1
set :sidekiq_big_processes, 4
server 'example-small.com', roles: [:sidekiq_small]
server 'example-big.com', roles: [:sidekiq_big]
```

## Customizing the monit sidekiq templates

If you need change some config in redactor, you can
Expand Down

0 comments on commit 806cdb4

Please sign in to comment.