I’m not a Perl guy so excuses my ignorance… I’m the database ETL guy. Not sure if perl is the right choice either.

I’m trying to be proactive and devise a plan B for a ETL process where I expect a file 10X larger than what I process daily for a recast job. The ETL may handle it but I just don’t know.

This file may need to be split and we don’t want to lose related data. I assume it would be easier to do it at the unix scripting level rather than the etl tool providing there are no limitations to file sizes with Perl.

The file will most likely be 10GB +- a few GB. It is unknown at this time

The basic file format is as follows with the first 3 characters of each line being the record type (100,401,404,410,411)

The file must be split into segments equal to a daily run approximately 1gb in size and it has to occur just before a 100 record as all the rows that follow a 100 belong together.

1001104vvbvnbvd 4011104ghghghgh 404111kjdkfjkdf 404111kjdkfjkdf 404111kjdkfjkdf 404111kjdkfjkdf 4103445kkjkljlk 4103445kkjkljlk 4113445kkjkljlk 4043445kkjkljlk 10011ffgfgg1250 4011104fffhghgh 404111kjddfjkdf 404111kjdkrtrdf etc...skip ahead 1gb 10011ffgfger250 <---- break and start file 2 for the next 1GB 40111034efhghgh 404111kjddfjkdf 404111kjdkrtrdf
thanks in advance.

In reply to Can I split a 10GB file into 1 GB sizes using my repeating data pattern by Anonymous Monk

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.