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
Currently, pixels can only cache one table specified in the pixels.properties. We should finish the following tasks for this issue:
remove cache.schema and cache.table from pixels.properties;
Remove the cacheBorder in the layout of a table, cached column chunks should be directly specified by the cache plan (job);
A cache plan will be related to a path and a layout of a table;
Redesign the data model for cache plan in etcd. A cache plan records the set of column chunks to be cached in a file and a list of paths on which the cache plan is applied;
Redesign the cache coordinator and cache worker, apply the new data model for cache plan.
The text was updated successfully, but these errors were encountered:
…emory leak in cache writer (#728)
1. Now, the cache schema and table names are specified in the layout_version and cache_version values.
2. Close PixelsPhysicalReader in PixelsCacheWriter to release the off-heap buffers allocated for localFs.
3. Revise the pixels cache document.
Currently, pixels can only cache one table specified in the pixels.properties. We should finish the following tasks for this issue:
cache.schema
andcache.table
from pixels.properties;cacheBorder
in the layout of a table, cached column chunks should be directly specified by the cache plan (job);The text was updated successfully, but these errors were encountered: