All of the above answers seem to have problems with possible filehandle limits; personally I would read the entire file and convert it to a hash of arrays, and then write each array out to a file indicated by the array key. This has the advantage that only one file is open at any time. I will stick my neck out and say it will also be faster due to less file I/O
As a second comment, you should use something like Text::CSV to get the data, but if you want it quick and dirty there's a good argument for using split instead of a regex here.
Amount of Data: 300k rows = 64k per row = approx 19.6GB of data may cause problems, so maybe a compromise is to write the data when an array gets to a certain size.
The following (untested/debugged) shows the idea...it assumes you specify the file(s) you want to read from on the command line.
Update: Changed when it writes to file as a result of a davido comment
use constant ROW_LIMIT => 10000;
sub writeData {
my ($name, $data) = @_;
open FH, ">>", "sample_$name";
print FH @$data;
# may not be needed (auto close on sub end)
close FH;
}
my %hash;
my $ctr = 0;
while (<>) {
my @elems = split /|/;
my $idx = $elem[1];
if (exists $hash{$idx}) {
# save to existing array
push @$hash{$idx}, $_;
} else {
# create new array
$hash{$idx} = ( $_);
};
# if we've got too much data, write it out
if ($ctr++ >= ROW_LIMIT) {
# write data to each file...
foreach my $key (%hash) {
writeData( $key, $hash{ $key}); delete $hash{$key};
}
$ctr = 0;
}
}
# write remaining data to each file...
foreach my $key (%hash) {
writeData( $key, $hash{ $key});
}
A Monk aims to give answers to those who have none, and to learn from those who know more.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|