LoTGoD
Wed 21st Jan '09, 3:08pm
I followed the instructions here for the med/large board imports :
http://www.vbulletin.com/docs/html/med_large_import
My import has finished, but I am a bit confused as to what I should do next...
Specifically, the first part here
Manually dropping the fulltext-index 'title' (title, 'pagetext') from the post table before the post module, then adding it after the import has been run can speed up the post module considerably.
ALTER TABLE `post` DROP INDEX `title`;
ALTER TABLE `post` ADD FULLTEXT `title` (`title` ,`pagetext`);Should I have ran both SQL queries before I got to the post module, or just the first one, and then ran the second query after the import finished?
Also, I did set:
define('shortoutput', true); but I didn't see a difference in the text that was displayed during the import.
Per a post I saw from Jerry, I set my memory limit to 1024mb for MySQL, and I think I was able to turn off time outs, but I would like to know specifically how you turn the timeout off. (This is a local server that I have setup and control over)
Once the import is completed, should I run some SQL query to remove these? :
ALTER TABLE `post` ADD INDEX `idx_importpostthread` ( `importpostid` , `importthreadid` )
ALTER TABLE `thread` ADD INDEX `idx_importthread` ( `importthreadid` ) What would the SQL code be to remove those?
Thanks for any help on this issues.
http://www.vbulletin.com/docs/html/med_large_import
My import has finished, but I am a bit confused as to what I should do next...
Specifically, the first part here
Manually dropping the fulltext-index 'title' (title, 'pagetext') from the post table before the post module, then adding it after the import has been run can speed up the post module considerably.
ALTER TABLE `post` DROP INDEX `title`;
ALTER TABLE `post` ADD FULLTEXT `title` (`title` ,`pagetext`);Should I have ran both SQL queries before I got to the post module, or just the first one, and then ran the second query after the import finished?
Also, I did set:
define('shortoutput', true); but I didn't see a difference in the text that was displayed during the import.
Per a post I saw from Jerry, I set my memory limit to 1024mb for MySQL, and I think I was able to turn off time outs, but I would like to know specifically how you turn the timeout off. (This is a local server that I have setup and control over)
Once the import is completed, should I run some SQL query to remove these? :
ALTER TABLE `post` ADD INDEX `idx_importpostthread` ( `importpostid` , `importthreadid` )
ALTER TABLE `thread` ADD INDEX `idx_importthread` ( `importthreadid` ) What would the SQL code be to remove those?
Thanks for any help on this issues.