Reputation: 1
In TiDB, I can configure and deploy TiFlash, which can be used for columnar based storage to perform OLAP tasks. In TiDB Serverless, I can see the same columnar storage is available on the dashboard. I want to use TiFlash too in TiDB Serverless.
But when I tried to run ALTER TABLE table_name SET TIFLASH REPLICA count; to create the TiFlash replica, it did not work. Are there other configurations I have to run through to enable it in the TiDB Serverless?
I tried command: ALTER TABLE table_name SET TIFLASH REPLICA count; It's not working.
Upvotes: 0
Views: 126
Reputation: 653
This indeed should work. Could you check if you get any warnings for the ALTER TABLE... SET TIFLASH REPLICA...
statement?
What does TABLE information_schema.tiflash_replica;
return?
See also: https://docs.pingcap.com/tidbcloud/create-tiflash-replicas#check-replication-progress
Upvotes: 1