I am trying to read a 12MB+ file which has a large HTML table which looks like this:

<table>
    <tr>
        <td>a</td>
        <td>b</td>
        <td>c</td>
        <td>d</td>
        <td>e</td>
    </tr>
    <tr>
        <td>a</td>
        <td>b</td>
        <td>c</td>
        <td>d</td>
        <td>e</td>
    </tr>
    <tr>..... up to 20,000+ rows....</tr>
</table>

Now this is how I'm scraping it:

<?

require_once 'phpQuery-onefile.php';

$d = phpQuery::newDocumentFile('http://localhost/test.html');

$last_index = 20000;

for ($i = 1; $i <= $last_index; $i++)
{
    $set['c1']  = $d['tr:eq('.$i.') td:eq(0)']->text();
    $set['c2']  = $d['tr:eq('.$i.') td:eq(1)']->text();
    $set['c3']  = $d['tr:eq('.$i.') td:eq(2)']->text();
    $set['c4']  = $d['tr:eq('.$i.') td:eq(3)']->text();
    $set['c5']  = $d['tr:eq('.$i.') td:eq(4)']->text();
}

// code to insert to db here... 

?>

My benchmark says it takes around 5.25 hours to scrape and insert 1,000 rows to db. Given that data, it will take around 5 days just to finish the whole 20,000+ rows.

My local machine is running on:

  • XAMPP
  • Win 7
  • proc, i3 2100 3.1GHz
  • ram, G.Skill RipJaws X 4GB dual
  • HDD, old SATA

Is there any way I can speed up the process? Maybe I'm scraping it the wrong way? Note that the file is accessible locally hence I used http://localhost/test.html

Slightly faster solution:

for ($i = 1; $i <= $last_index; $i++)
{
    $r = $d['tr:eq('.$i.')'];

    $set['c1']  = $r['td:eq(0)']->text();
    $set['c2']  = $r['td:eq(1)']->text();
    $set['c3']  = $r['td:eq(2)']->text();
    $set['c4']  = $r['td:eq(3)']->text();
    $set['c5']  = $r['td:eq(4)']->text();
}

// code to insert to db here... 

?>
link|improve this question

You should be using a readymade table extracting library, not collect the data yourself. (For example blog.mspace.fm/2009/10/14/parse-an-html-table-with-php - albeit you have to watch out if that regex is sufficiently robust for your case.) – mario Nov 10 '11 at 18:48
@mario Isn't phpQuery already a readymade library? – IMB Nov 10 '11 at 18:56
feedback

1 Answer

up vote 2 down vote accepted

I have never worked with phpQuery, but that looks like a very sub-optimal way to parse a huge document: It's possible that phpQuery has to walk through the whole thing every time you make it load a row using tr:eq('.$i.').

The much more straightforward (and probably also much faster) way would be to simply walk through each tr element of the document, and deal with each element's children in a foreach loop. You wouldn't even need phpQuery for that.

See How to Parse XML File in PHP for a variety of solutions.

link|improve this answer
Hmm, but I am not parsing XML, just HTML will that work? – IMB Nov 10 '11 at 18:32
@IMB if the HTML is clean, it won't matter. However, you can try sticking with phpQuery first, you just have to change your approach: Make phpQuery load all the trs in one go (i.e. all the tables children named tr...), then walk through them. That might already be faster by orders of magnitude – Pekka Nov 10 '11 at 18:33
The HTML isn't really clean. I kinda get what you're saying but I don't know how to do that in code other than what I did above. How do I load all the TRs without walking through each ? I would have to do a double foreach, to get each TDs right? sounds like more slower to me though. – IMB Nov 10 '11 at 18:40
1  
@IMB believe me, it's probably going to be much faster. The way you are doing it right now, it may have to parse the whole document on every iteration. I don't know how phpQuery is implemented but this is almost certainly the most sub-optimal way to do it. – Pekka Nov 10 '11 at 18:43
You're right thanks. I rethink what you said and I only needed one foreach. I edited the code above and it is now 20% faster. Although I think it can even be more faster LOL, what you think? – IMB Nov 10 '11 at 19:04
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

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