ClickHouse icon indicating copy to clipboard operation
ClickHouse copied to clipboard

Persistent Parquet Metadata Cache for Object Storage

Open Selfeer opened this issue 9 months ago • 0 comments

Describe the new feature

Currently, we lose all cached data when the server restarts, which impacts performance and requires recalculating or refetching data. To improve reliability and efficiency, we need a mechanism to persist the cache across restarts.

Expected Behavior

  • Cached data should be retained even after a server restart.
  • The system should be able to reload the cache from a backup storage (e.g., disk, or external caching service).

Possible Solutions

The usage of Redis might be beneficial here, as when a new node starts or an existing one restarts, it can already access the cached metadata from Redis.

Selfeer avatar Mar 20 '25 10:03 Selfeer