"It seems to me that 1 is not such a good plan because, if for any reason the script were to fail, the system fails and doesn't restart."

That, right there, is precisely why I recommended picking up a $3 microcontroller for the project instead.

A microcontroller does one thing, and one thing only... executes the code you write. It does nothing more. It is not have the layers upon layers of software and complexity nor the potential problems that a script has running on top of an OS does.

You've gone the Pi route, so I'll stick with that. If the system fails or doesn't restart, cron isn't going to help you, so 1 & 2 are prone to the same type of failure there. However, if the system does fail, you've got bigger problems anyway.

Unless you're willing to get into extra complexity of having a watchdog type script running to monitor the main process, I'd stick with cron, ensuring that the script that's being run verifies that it can never start more than one instance of itself, and if it makes such an attempt, fail and send out a warning message of some sort.


In reply to Re: Continuous or timed? by stevieb
in thread Continuous or timed? by Bod

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.