We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If the schema of a table in the TiFlash side gets broken for some reason, there could be a less costly approach for rebuilding that table:
alter table <table_name> set tiflash replica 0
drop table db_<db_id>.t_<table_id>
alter table <table_name> set tiflash replica <num>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If the schema of a table in the TiFlash side gets broken for some reason, there could be a less costly approach for rebuilding that table:
alter table <table_name> set tiflash replica 0
on TiDB and wait till all regions of that table get removed from TiFlashdrop table db_<db_id>.t_<table_id>
through TiFlash HTTP API to drop that table in TiFlash sidealter table <table_name> set tiflash replica <num>
on TiDB to rebuild TiFlash regions dataThe text was updated successfully, but these errors were encountered: