I've been poking around with an application design that always seems to come to some basic issues.

It looks like the application will end up distributed across several servers (maybe three in the beginning, with the control module on the fourth in front of these three). Each of the three will host a separate and unique Perl application vital for the entire project. The controller will message each of the three for different reasons, at different times, and will require the acknowledgement of receipt and return data.

I suppose there are several ways to approach this, but I'm stuck on wanting to also build a somewhat 'universal' messaging bus (or broker, or proxy on steroids) that will serialize (if required based on the message cfg contained in the message itself) requests in/out, guarantee delivery/response if called for, etc.

This type of thinking led me to backhand and Spread.

However, in some discussions it turned out that we'd like to see Perl versions (with more limited functionality), for possibly both load balancing (for future scaling) and message brokering.

I think I'm looking for suggestions, guidance, tips or pointers to existing Perl (partial of full) solutions, name calling, etc.

Side effects of the messaging broker would make it useful for many other applications as well.

After much scouting around we've concluded we're probably going to have to roll our own, but I thought some quick brainstorming or monk-pleading here might be useful.


In reply to Guaranteed messaging among apps by tjh

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.