Last active
August 29, 2015 14:22
-
-
Save gabrieljoelc/935e98727494fa860533 to your computer and use it in GitHub Desktop.
Sidekiq configuration notes from happy hour session with Mike Perham
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* 1X Dyno supports about 5 threads so use 2X Dyno | |
* DB pool | |
* Add database.yml for production now | |
* Unicorn 1 | |
* Puma per web concurrency | |
* Sidekiq per concurrency | |
* Remove redis sizes | |
* PX dyno? | |
* More dynos | |
* 1-2 threads can share a database pool | |
* 1-2 threads can share a redis pool if we want to reduce the number redis connecitons used per thread | |
* configure_server redis.config size: X |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment