1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/4.0-Upgrade.md

41 lines
1.5 KiB
Markdown
Raw Normal View History

2015-10-21 00:25:17 -04:00
# Welcome to Sidekiq 4.0!
2015-10-14 19:28:20 -04:00
2015-10-21 00:25:17 -04:00
Sidekiq 4.0 contains a redesigned, more efficient core with less overhead per job.
See my blog for [an overview of Sidekiq 4's higher performance](http://www.mikeperham.com/2015/10/14/optimizing-sidekiq/).
2015-10-14 19:28:20 -04:00
## What's New
* Sidekiq no longer uses Celluloid. If your application code uses Celluloid,
you will need to pull it in yourself.
* `redis-namespace` has been removed from Sidekiq's gem dependencies. If
you want to use namespacing ([and I strongly urge you not to](http://www.mikeperham.com/2015/09/24/storing-data-with-redis/)), you'll need to add the gem to your Gemfile:
```ruby
gem 'redis-namespace'
```
* **Redis 2.8.0 or greater is required.** Redis 2.8 was released two years
ago and contains **many** useful features which Sidekiq couldn't
2015-10-21 00:25:17 -04:00
leverage until now. **Redis 3.0.3 or greater is recommended** for large
2015-11-16 17:53:21 -05:00
scale use [#2431](https://github.com/mperham/sidekiq/issues/2431).
2015-10-14 19:28:20 -04:00
2015-10-23 18:54:44 -04:00
* Jobs are now fetched from Redis in parallel, making Sidekiq more
resilient to high network latency. This means that Sidekiq requires
more Redis connections per process. You must have a minimum of
2015-10-14 19:28:20 -04:00
`concurrency + 2` connections in your pool or Sidekiq will exit.
When in doubt, let Sidekiq size the connection pool for you.
2015-10-21 00:25:17 -04:00
## Upgrade
First, make sure you are using Redis 2.8 or greater. Next:
* Upgrade to the latest Sidekiq 3.x.
```ruby
gem 'sidekiq', '< 4'
```
* Fix any deprecation warnings you see.
* Upgrade to 4.x.
```ruby
gem 'sidekiq', '< 5'
```