You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...then as cache-misses in the ChunkedBloscFileDataManager are fulfilled by the BossDBRelayDataManager, they're saved to disk and returned to the client.
There currently exists no mechanism by which to clear the files from ChunkedBloscFileDataManager, which means that the cache will grow to infinity (or until your drive is full, whichever is sooner).
There should be a cache cleanup strategy, but I believe it makes sense for there to be several strategies which a user can choose between. Perhaps options like:
LRU
FIFO
Most distant (Euclidean) from LRU (??)
Even if we just implement one of these to start with, might be smart to leave space and an abstraction layer to allow for multiple in the future.
The text was updated successfully, but these errors were encountered:
Right now, if you create the following
DataManager
stack;...then as cache-misses in the
ChunkedBloscFileDataManager
are fulfilled by theBossDBRelayDataManager
, they're saved to disk and returned to the client.There currently exists no mechanism by which to clear the files from
ChunkedBloscFileDataManager
, which means that the cache will grow to infinity (or until your drive is full, whichever is sooner).There should be a cache cleanup strategy, but I believe it makes sense for there to be several strategies which a user can choose between. Perhaps options like:
Even if we just implement one of these to start with, might be smart to leave space and an abstraction layer to allow for multiple in the future.
The text was updated successfully, but these errors were encountered: