I'm trying to make sure I'm not missing anything w...
# questions-and-troubleshooting
j
I'm trying to make sure I'm not missing anything when moving blob storage accounts in a shard data cluster running in AKS. It seems like the only starrocks created database that uses blob storage is the
_statistics_
database, and I can easily copy that data to a new database using the new storage volume and then rename it. The other two databases I see are
sys
and
information_schema
. When I run
SHOW CREATE DATABASE
on those it does not show a storage volume used. Does that mean it's not using the blob storage? Where is that data actually stored?
r
No, these databases (
sys
and
information_schema
) aren't stored in your blob - even if you didn't setup your shared data storage, these tables still exist. These tables are stored in your FEs.
👍 1
🙌 1
j
Awesome thanks for the info