I have a MYISAM table in MySQL 5.6 with a text column with millions of rows. The total space taken by that table is about 40 GB most of which is in the text column. I started the process 70 plus hours ago with this command:
CREATE FULLTEXT INDEX page_text_idx ON table_name(text_col);
It is still running and initally consumed about 40 GB space and after that slowly eating disk space at about half GB per hour.
Is something wrong and I should wait and MYSQL indexing very slow process?
Does any one know from experience how long it takes per GB of text indexed?