Hello perl gurus,

I am not into perl (as of now) but really admire the functionalities and flexibilites it provides.

I have a requirement which states as follows:
"No single process in Unix/Linux system can take more than 70% CPU at any given point of time"

I have proposed two solution, which are near to this requirement but not close enough:
1) Use of /etc/security/limits.conf file to set CPU time. For example:

@students hard cpu 2


(This will limit CPU running time to 2 minutes to any member of students group)

2) Second way is to use "cpulimits" freeware program which can limit CPU usage based on either a PID or any program name. Example to this is:

./cpulimit -e perl -l 10


This will limit "perl" to maximum 10% of CPU utilization.

Both of these methods are good in their own way but doesn't solve my purpose. I want
"ANY PROCESS AT ANY TIME SHOULD NOT USE MORE THAN 70% OF CPU".

Can anyone take a look into this and suggest me a possible solution with the help of perl?

Thanks,
VS

In reply to How to limit CPU utilization by ANY process with a perl script? by unix.95054

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.