Hello i'm new to here. I am using StarRocks 4.0. A...
# questions-and-troubleshooting
u
Hello i'm new to here. I am using StarRocks 4.0. As I understand it,
Copy code
SELECT PARTITION_NAME, DATA_SIZE, STORAGE_SIZE 
FROM information_schema.partitions_meta 
WHERE TABLE_NAME = 'something' 
ORDER BY PARTITION_NAME ASC;
the two columns
DATA_SIZE
and
STORAGE_SIZE
represent different things. My understanding is that
STORAGE_SIZE
refers to the actual physical storage usage, including indexes and replication overhead. However, when I actually ran the query, both values returned the same results. Does this mean my understanding is incorrect?
Plus I deployed starrocks cluster using helm chart in kubernetes. and also we use dynamic storage volume.