Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use maxmemory-policy noeviction for Chat redis
This is the value that Sidekiq recommends to avoid any data being dropped if memory is exceeded. Without this configuration option Sidekiq complains: ``` WARNING: Your Redis instance will evict Sidekiq data under heavy load. The 'noeviction' maxmemory policy is recommended (current policy: 'volatile-lru'). See: https://github.com/mperham/sidekiq/wiki/Using-Redis#memory ``` To resolve this I've created a parameter group so that we can set this parameter. From googling I also understand that we need to change cluster-enabled too and then every other parameter is the same as default AWS - however I still need to confirm that.
- Loading branch information