Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify maxmemory policy to avoid Redis evicting Sidekiq data #2

Open
andreaswittig opened this issue Nov 16, 2022 · 2 comments
Open
Assignees
Labels
enhancement New feature or request

Comments

@andreaswittig
Copy link
Contributor

Sidekiq complains about the Redis maxmemory policy and asks for a noeviction policy. Evaluate and implement.

@andreaswittig andreaswittig added the enhancement New feature or request label Nov 16, 2022
@nodomain
Copy link

nodomain commented Dec 4, 2022

From my Mastodon Terraform project where I did the same some weeks ago, using the same architecture on AWS as you ;-)

resource "aws_elasticache_parameter_group" "redis" {
  name   = var.name
  family = "redis6.x"
  parameter {
    name  = "maxmemory-policy"
    value = "noeviction"
  }
}

And it stops complaining.

@michaelwittig
Copy link
Contributor

depends on cfn-modules/elasticache-redis#12

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants