I have a PHP script that scrapes data from a government web site and puts it in a MySQL database for easier searching. It works great, but every 6,000 some rows, it stops being able to scrape successfully. I think this is some kind of memory leak in with phpQuery, the library I use to parse the HTML I fetch.

Here are the errors, and as you can see they are all in the phpQuery file. The curious thing is, once it errors out, I can restart the script at the record it started erroring on and it works fine for another 6,000 or so records.

Has anyone ever heard of this happening in phpQuery? Perhaps there are too many phpQuery objects? (I can't find a way to 'close' them)

Alternatively, do you have any suggestions for another way I can do this? At the moment, I have to restart the script manually every 40 minutes or so, and with 500,000 records that definitely adds up.

link|improve this question

45% accept rate
feedback

2 Answers

I've used phpQuery (large scale) and I didn't notice such errors.

Try to reload phpQuery every 1000 rows - just clear all variables and hope that garbage collector would fix the problem.

link|improve this answer
How do I reload phpQuery? – Tobias Fünke Aug 4 '11 at 17:20
post how You load new document – Jacek_FH Aug 4 '11 at 17:28
codepad.org/NfEaBVZ5 – Tobias Fünke Aug 4 '11 at 18:20
reloading is not an option - You would have to restart Your script - for example after 1000 items, request url of a script itself as simple recursion (close connection and use register_shutdown_function) – Jacek_FH Aug 4 '11 at 18:38
try with other phpQuery versions – Jacek_FH Aug 4 '11 at 18:39
show 1 more comment
feedback

New answer as I want code styling ;)

two ways of reloading script on the fly after 1000 rows:

on unix hosts:

exec("php __FILE__ &");

by http request:

ignore_user_abort(1);
set_time_limit(0);

... 1000 rows parsed ...

$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
curl_setopt($curl_handle,CURLOPT_CONNECTTIMEOUT,1);
curl_exec($curl_handle);
curl_close($curl_handle);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.