Chunk load from cache failed
Code
TERRAIN/CHUNK_FAILED_TO_LOAD_FROM_CACHE
What it means
Chunk loading attempted to read from the cache layer (Redis) but failed unexpectedly.
When it happens
- Loading a chunk from Redis/cache fails.
Typical scenarios:
- Redis is unavailable or not ready
- Serialization/deserialization errors in the cache client
- Cache entry is corrupted or incompatible
How to handle
- Treat as retryable, but avoid infinite retry loops.
- Prefer a fallback path: attempt storage load, then generation.
- Include the chunk
keyinmetaso you can identify hot/failed keys.
Last updated on