From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 Path: border1.nntp.dca1.giganews.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!usenet.blueworldhosting.com!feeder01.blueworldhosting.com!feeder.erje.net!eu.feeder.erje.net!news.stack.nl!aioe.org!.POSTED!not-for-mail From: Pascal Obry Newsgroups: comp.lang.ada Subject: Re: On intended use cases of the distributed annex Date: Wed, 24 Sep 2014 12:09:34 +0200 Organization: Home - http://www.obry.net Message-ID: <1411553374.7751.25.camel@obry.net> References: <20a06909-d123-4c51-8185-057d50e50186@googlegroups.com> Reply-To: pascal@obry.net NNTP-Posting-Host: gHWNHVIU6VMBZDzTQ9XbgQ.user.speranza.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Complaints-To: abuse@aioe.org X-Mailer: Evolution 3.12.6-1 X-Notice: Filtered by postfilter v. 0.8.2 Xref: number.nntp.dca.giganews.com comp.lang.ada:189128 Date: 2014-09-24T12:09:34+02:00 List-Id: Alejandro, > In other words, does the DSA support reconfiguration (even if it is at > launch time) of nodes without editing a config file, or even online > reconfiguration without manual intervention?=20 Yes. A Remote_Types partition can be launched at runtime as many time as needed. For load balancing I've been using a very simple protocol: 1. some partitions are producers of works items 2. the work-items are stored into a queue 3. many partitions are consumers of those work-item, you can start one on each node if needed. 4. consumers take a job into the queue, do whatever is needed and post the results possibly in another queue for other consumers to work. All this works fine and is a great way to achieve load balancing. In fact nothing new there, you'll do that for a parallel applications using tasks and protected-object (for the queue). The nice thing with the distributed annex is that it there is nothing new, just a prama. The queue of work-items I've described above will be protected with protected object as many partitions will access it. --=20 Pascal Obry / Magny Les Hameaux (78) The best way to travel is by means of imagination http://v2p.fr.eu.org http://www.obry.net gpg --keyserver keys.gnupg.net --recv-key F949BD3B