I suspect you would improve performance by reading the data one line at a time from each file. Your strategy of collecting all the data at once runs the risk of driving the machine into swap, with the attendant time consumption of I/O with the swap file system.

You can produce an array of open file handles, one for each data source, and place the first line of each in another array. You may need to adjust the number of open file handles allowed to you for this. Then, keeping track of which index provided each line, sort by timestamp. Extract data from the soonest line, run it through its processing to update the statistics you want, and replace that line from the corresponding file handle. Sort again in some way (an insertion sort may be called for) and, as you say, lather, rinse and repeat.

You should a give more specific description of your data and the statistics you want. With that we could give better advice on the streaming you want. I see that you have done that, but I'm sorry to admit that I still don't understand how you need to parse times out of that.

After Compline,
Zaxo


In reply to Re: Tabulating Data Across Multiple Large Files by Zaxo
in thread Tabulating Data Across Multiple Large Files by reds

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.