From f6274857d046e44766e20cadcb59006fb7317713 Mon Sep 17 00:00:00 2001 From: Janis Eccarius Date: Wed, 17 Jun 2026 00:20:19 +0200 Subject: [PATCH] fix(redis): allow corrupt AOF tail on startup after CPU incident CPU saturation caused an unclean AOF write, corrupting the tail of appendonly.aof.41.incr.aof at offset 32653224. Redis refuses to start. Setting aof-load-corrupt-tail-max-size to 88 (value Redis reported) so it truncates and loads the intact data instead of crash-looping. Co-Authored-By: Claude Sonnet 4.6 --- redis/eu-central-1/values.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/redis/eu-central-1/values.yaml b/redis/eu-central-1/values.yaml index cafb206..b039e37 100755 --- a/redis/eu-central-1/values.yaml +++ b/redis/eu-central-1/values.yaml @@ -19,3 +19,8 @@ master: persistence: enabled: false + +commonConfiguration: |- + appendonly yes + save "" + aof-load-corrupt-tail-max-size 88