Some thoughts:
Are the processes CPU-bound or IO-bound? If IO-bound you might consider making the file system cache bigger (as long as you're not paging). If you also can arrange that all reports that use the same shell run after each other ( or 8 at the same time to use all procs) you can be pretty sure that all reports will find all the data cached in memory. You will still have the overhead of the OS.
Is it true that a holdings file defines a subset of the shell file? If so, is it possible to split up the shell file in several subset files, and then run all the reports on the appropiate subset files. The report processes then don't have to worry about iterating through the data or using a binary search, they need it all.
This is most efficient if several reports need the same subset.
You will need at least twice the disk space, depending on how much overlap there is between the holdings files.
It should be possible to create all the subset files with a single pass through the shell file, as long as you don't run into the maximum number of open files per process. That depends on the number of subset files you need to create.
HTH,
Thijs
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.