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 <noreply@anthropic.com>
This commit is contained in:
@@ -19,3 +19,8 @@ master:
|
|||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
|
commonConfiguration: |-
|
||||||
|
appendonly yes
|
||||||
|
save ""
|
||||||
|
aof-load-corrupt-tail-max-size 88
|
||||||
|
|||||||
Reference in New Issue
Block a user