Hi,
I am working on a project that requires me to parse 52,005,167 rows in
a MySQL table. I am using a series of PHP scripts for each test I
would like to run on the data. For example I have one test that is to
look for fields with consecutive values. If a row is found to have
more than 4 fields containing consecutive values I would like to
remove the row from the table.
I understand that this will take a good deal of time to process, which
is not a problem. What I am wondering is, should I disable the
maximum script execution time?
Currently I am running these tests in blocks of 10,000 rows at a time.
I would like to just run a test and let it run from start to finish.
Any comments?
TIA to for any help.
Adam
I am working on a project that requires me to parse 52,005,167 rows in
a MySQL table. I am using a series of PHP scripts for each test I
would like to run on the data. For example I have one test that is to
look for fields with consecutive values. If a row is found to have
more than 4 fields containing consecutive values I would like to
remove the row from the table.
I understand that this will take a good deal of time to process, which
is not a problem. What I am wondering is, should I disable the
maximum script execution time?
Currently I am running these tests in blocks of 10,000 rows at a time.
I would like to just run a test and let it run from start to finish.
Any comments?
TIA to for any help.
Adam
Comment