This message was deleted.
# troubleshooting
s
This message was deleted.
a
segment files on deep storage are zip compressed. files, once downloaded locally, are decompressed. These decompressed files are memory-mapped by historical.
so there has to a cache in between.
h
Ok, but can it be volatile?
a
No. it can't be. since you might memory map a segment. if that segment gets deleted from disk but is still memory-mapped and is being queried then bad things can happen.
h
Ok, not sure if I made it clear what I mean. I don't mean volatile as in in-memory, but volatile as in stored in /tmp instead of a proper volume.
a
you mean like that files can just disappear or deleted by OS - is that right?
h
I don't think the OS will delete them. But I'm not sure if they will survive a pod restart.
a
thats fine. if the pod restarts and the data goes away, it would be downloaded again from deep storage.