Questions tagged [amazon-elasticache]

46 questions
3
votes
1 answer

How to monitor the disk space usage of an AWS elasticache redis cluster?

This is the reason behind this question: I am using a redis cluster on AWS Elasticcache as a datastore. I do not enable eviction because I need to keep the data alive inside the redis cluster for as long as the users are actively using them. It is a…
Anthony Kong
  • 3,288
  • 11
  • 57
  • 96
2
votes
2 answers

Add ElastiCache Cluster to Elastic Beanstalk Application

I have an Elastic Beanstalk app setup utilizing the docker platform. Everything runs smoothly and I can redeploy the app using the eb deploy cli command. The app is setup on a custom VPC (something I barely understand) and is accessible via the…
2
votes
3 answers

Redis GUI needed for AWS ElastiCache on an EC2 instance

I've a AWS ElastiCache Redis cluster setup that I wish to manage. Since AWS doesn't let you access ElastiCache outside the VPC, I've setup a micro EC2 instance that carried a copy of the phpRedisAdmin script pointed to this cluster. But AWS has…
2
votes
1 answer

How do I enable backup(snapshot) on redis elasticache t2.medium

I was able to create a snapshots of my m1.small caches but the backup button is disabled when I select my t2.medium. Is there a way for me to enable backup of a t2.medium redis elasticache?
Gene Diaz
  • 707
  • 1
  • 7
  • 12
2
votes
1 answer

Elasticache on AWS slower than my RDS call

I've been attempting to use elasticache on aws to cache some of my data for faster retrieval, but calling elasticache (an m1.small instance) is slower than calling my RDS instance! Any tips on how to optimize or fix this issue? All of my instances…
daSn0wie
  • 121
  • 2
2
votes
1 answer

Hosted fault-tolerant (replicated) memcache solution in amazon ec2 cloud?

does anyone offer a fault-tolerant (replicated) memcache solution that is hosted in amazon ec2, needs zero maintenance and works with providing just one IP? I know that amazon offers ElastiCache. But it is still quite low level and has some…
Marcel
  • 150
  • 10
1
vote
0 answers

processor type differences between elasticache instance types , will all instances suffer the same way?

This may sound like yet another, "what is a vcpu" or "should I use elasticache, remember its single threaded!!" question --- but I think this asks a question unanswered. redis is single threaded, means only one core will ever be used. elasticache is…
Muradin007
  • 13
  • 2
1
vote
1 answer

Is it possible to have a Cloudwatch alarm of the 'free memory' of a ElastiCache Redis cluster?

I'm looking to set up a cloudwatch alarm on a Redis cluster in ElastiCache rather than each individual node. Is this possible in cloudwatch? so far I've only found ways to set alarms on each individual node, however that isn't very scalable if in…
1
vote
0 answers

Does mod_pagespeed use Elacticache Cluster Client? Or do we have to manually keep a list of nodes?

I've searched a lot for this, but couldn't find anything. The documentation (https://www.modpagespeed.com/doc/system#memcached) also does not specify anything regarding the same. I'm using mod_pagespeed on apache server, and I have a memcached…
1
vote
1 answer

Invoke Lambda function with delay

I have this schema to receive http requests and do some processing on files under a Windows Server EC2 instance. API Gateway -> Lambda -> EC2 (Node.js + Express) For now, there are a few requests per day, so the instance is stopped until a request…
1
vote
1 answer

Uneven load distribution on an elasticache cluster

Amazon elasticache cluster looks to be a really good choice for auto-scaling but it seems the load distribution is not equal among the nodes. Both memory and CPU wise the node 1 seems to take almost twice the resource than other nodes. This often…
1
vote
0 answers

Elastic BeanStalk can't connect to ElastiCache Redis

I'm having issues connecting from Elastic BeanStalk to ElastiCache Redis. When I SSH into the EBS instance and try to use redis-cli to connect, it times out. This is how I set up my environment: I have an existing VPC with two subnets. I created a…
1
vote
0 answers

Amazon OpenSearch Service stably or less downtime?

Can anyone point out, What is the best way for the elastic search to run stably? We frequently get messages about it requiring updates and that an update requires some downtime. Could we have 2 instances running and just change the DNS record to…
1
vote
3 answers

How to switch nodes easily in a redis cluster cli?

I have a three node redis cluster. If I run cluster nodes after I connect to one of the node via redis-cli, I got this output: 10.0.32.70:6379> cluster nodes fedd7d9220ca59045782050e9c418103fdeee3bf 10.0.33.13:6379@1122 slave…
Anthony Kong
  • 3,288
  • 11
  • 57
  • 96
1
vote
1 answer

Why my java application can reach the AWS elasticcache Redis cluster with the lettuce library but not directly with redis-cli?

I have an java app running in an EC2 instance which use lettuce (https://lettuce.io/) to talk to a redis cluster on AWS ElasticCache. The java app can connect with no issue. Here is the netstat output: tcp6 0 0 10.0.56.94:45846 …
Anthony Kong
  • 3,288
  • 11
  • 57
  • 96