is there any table to find the distribution of data across nodes based on segmentation???
I have created a projection based on particular segmentation. I want to see how the segmenation functioned to distribute the data across nodes. please help.
0
I have created a projection based on particular segmentation. I want to see how the segmenation functioned to distribute the data across nodes. please help.
Comments
s.node_name,s.schema_name,s.projection_name,s.storage_type,s.total_row_count
from v_monitor.storage_containers s where s.projection_name=:your_projection_name;
Thank you! I appreciate your help