Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
触发触发器时,有没有办法刷新我的 GCP Redis?
在我的具体情况下,我使用 Google StackDriver 指标来监控并获得通知。我希望当我的 Redis 内存超过 90% 时,它会自动刷新。有没有办法做到这一点?
扩展基本层实例会刷新缓存,因此我的建议是使用较小的上限(和适当的驱逐策略)配置实例,然后根据需要进行扩展。
gcloud redis instances update instance-id --update-redis-config maxmemory-policy=policy
或者,您可以设置一个 Web 服务来执行适当的 CLI 命令,但这需要更多的努力。