Hello
We just started using Percona Toolkit and are in testing this tool before we use it for our production service.
The Online Schema Change feature of Percona is very intreating for us. So we’re currently testing pt-online-schema-change command
In the manual page (" www.percona.com/doc/percona-toolkit/2.1/pt-online-schema-cha nge.html "), there is an explanation:
“When the tool finishes copying data into the new table, it uses an atomic RENAME TABLE operation to simultaneously rename the original and new tables. After this is complete, the tool drops the original table.”
- How does this tool determine if copying data is finished?
- If too much new data is being inserted on the original table with very fast rate, when does this tool finish copying and renaming?
We have a MySQL table named “sessions” which has more than 200M records, and 3M records are being inserted per day on this table now. We like to use pt-onlince-schema-chage on this table.
We had made a test case on our development database.
- We executed pt-online-schema-change to add new columns
- While it’s being executed, we were inserting new data as production service will be doing the same
- Database stays online successfully, but the remaining time of copying keeps increasing as we are inserting data.
We assume that copying data will never stop in this case, so changing schema will be never finished.
Our company provides a mobile application analytics service, and our traffic is form 224 different countries. This means that inserting new data will be executed in 24 hours without break time.
*In our case, can we still this tool for online-schema-change? If not, is there any other solution for this issue?
Perconais very impressive tool for us. We hope we can use this tool for our production service.
Thank you!