김지환
12/17/2025, 10:02 AMSELECT 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?김지환
12/17/2025, 1:59 PM