I created a new index on a table with 35million records and its been running for nearly 1 day now. Previously when I created indexes it took 20 minutes, there columns were however floats. The new idnex is on a varchar(45)
I used the processlist command which shows the index creation is still in progress with the following output
65417 | Repair with keycache | CREATE INDEX insert_index on checkins(dateinserted)
I was wondering if anyone could give me advice on finding out if the query is actually dead and is just sitting in the process list. Maybe something has gone wrong at some stage and I'm not aware.
Thanks