Link to home
Start Free TrialLog in
Avatar of cyber-33
cyber-33Flag for United States of America

asked on

FULLTEXT index generation crashes MySQL server

I am using MySQL Server 5 and trying to build a FULLTEXT index for a TEXT column of a lengthy table using this command:

ALTER TABLE `dbtest`.`textextracttable` ADD FULLTEXT (`ExtractTextColumn`)

The table has about 1M records. The size of ExtractTextColumn is also very large (designed to store 50 page text documents).

The good news is the error appears exactly after 600.531 sec of execution, which makes me think there is some configuration parameter that times out after 10min.

Thank you for your help.
Avatar of tsmgeek
tsmgeek
Flag of United Kingdom of Great Britain and Northern Ireland image

have you thought of using somthing like sphinx insted to index that data, its far better for FTS type queries and very very fast imo

ive had queries run far longer than 600s
Avatar of cyber-33

ASKER

Well, if MyISAM will not work, I will have to try Sphinx. Is it easy to configure on Windows 7?

Ideally, though, I'd like to go with the MySQL built in functionality. Performance is not a huge consideration at this point...

ASKER CERTIFIED SOLUTION
Avatar of tsmgeek
tsmgeek
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial