145 questions
0
votes
0
answers
20
views
How do I avoid latency in Redis Cache due to different regions?
I recently setup a Redis Essentials (Free) plan (Link. I set it up in US-East region, and I realised that any requests from other regions such as Asia Pacific or Europe, were facing additional ...
0
votes
1
answer
266
views
In Google Cloud Memorystore Redis Standard, can a read replica be promoted to master?
Can a read replica become master/primary (with automatic or manual promotion) in Google Cloud Memorystore Redis Standard?
If so:
How do I did this?
Why do they present High Availability as a separate ...
0
votes
1
answer
190
views
What is the recommended way to limit access for GCP MemoryStore instance/cluster
I have multiple memorystore clusters in my GCP project. I can define memorystore roles/permissions only at the project level, not at the instance/cluster level. However, I still want to limit access ...
1
vote
1
answer
322
views
How should I Handle IAM Authentication Token Expiration in Node.js for Memorystore Redis
I'm implementing a Node.js service that connects to a Memorystore Redis cluster using IAM authentication, which involves using an access token for the Redis AUTH command.
Considering the hourly ...
0
votes
1
answer
576
views
Rotating Redis TLS Certificates Without Downtime
I am using Redis with TLS enabled, configured through the tls-cert-file, tls-key-file, and tls-ca-cert-file settings. I understand that to rotate these certificates, I need to update the certificate ...
0
votes
1
answer
456
views
How do I set/get values in Memcached MemoryStore from Cloud functions?
I tried CloudMemcacheClient, but it is meant for managing instances:
const {CloudMemcacheClient} = require('@google-cloud/memcache');
const cmc = new CloudMemcacheClient();
How do I use Memcached i.e....
0
votes
1
answer
1k
views
Redis (via GCP Memorystore) is out of memory although maxmemory-policy is allkeys-lru
In a GCP App Engine application using Redis (6.x) as Memorystore, with a maxmemory-policy configured as allkeys-lru, we get out of memory errors.
Furthermore, every key that we write to Redis has a ...
3
votes
1
answer
164
views
Google Cloud Dataflow's Code Coverage on the new code is not passing the threshold in SonarQube after Java 17 upgrade
Recently, I have upgraded my cloud dataflow application from Java 11 to Java 17 and its corresponding dependencies. The application works fine and even the test cases work fine. I have also upgraded ...
0
votes
1
answer
179
views
Is direct data ingestion from pub/sub to memorystore possible?
I was wondering if there's any possible option to move data directly from Pub/Sub to Memorystore, no mather Redis or Memcached. Is there any kind of subscription from Memorystore to Pub/Sub?
I'm ...
0
votes
0
answers
150
views
Can't connect to Redis instance hosted by GCP Memotystore to my AWS EC2
I have created a HPA VPN Tunnel between GCP and AWS with this documentation: Create HA VPN connections between Google Cloud and AWS as checked I am able to ping the Virtual Machine Hosted in GCP on ...
1
vote
0
answers
504
views
Connecting to GCP Redis instance with AUTH & TLS enabled using cloud functions (python)
I want to connect to the redis instance from a flask app which is using cloud functions.
I'm using StrictRedis, and I have stored the redis_host, redis_port, redis_password and redis_cert as runtime ...
0
votes
0
answers
87
views
Error while disabling Redis API in Google Cloud
I am developing an app that uses redis as my secondary database to store users leaderboards as my backend I use firebase. To connect redis to my backend I used Google Cloud Memorystore for Redis API. ...
1
vote
1
answer
570
views
Error message from worker: redis.clients.jedis.exceptions.JedisConnectionException: Unknown reply:
While connecting to memorystore through dataflow getting the below exception in the dataflow worker logs.
'''Error message from worker: redis.clients.jedis.exceptions.JedisConnectionException: Unknown ...
0
votes
1
answer
135
views
GCP managed notebook connetion to Memorystore
I have a redis Memorystore instance.
I also have a managed notebook in vertex AI.
Connecting the notebook to the redis instance is time out.
I got:
ConnectionError: Error 110 connecting to 10...*:...
0
votes
1
answer
545
views
Google cloud memory store redis by default sets maxmemory-gb equals to instance memory. Does this pose a problem for eviction when cache is full?
I have a google cloud memory store instance M2 tier with 10GB capacity. I did not set any maxmemory-gb for it. By default it sets equals to instance capacity. Now my question is when it reaches the ...