Linda (coordination language)

From HandWiki
Linda
ParadigmMulti-paradigm[1]
FamilyCoordination language
Designed byDavid Gelernter
DeveloperScientific Computing Associates
First appeared1986; 38 years ago (1986)
Websitelindaspaces.com
Influenced
Java[2]

In computer science, Linda is a coordination model that aids communication in parallel computing environments. Developed by David Gelernter, it is meant to be used alongside a full-fledged computation language like Fortran or C where Linda's role is to "create computational activities and to support communication among them".[3][4][5]

History

David Gelernter wrote the first version of Linda as a Ph.D. candidate in 1979, naming it after Linda Lovelace, who appeared in the pornographic film Deep Throat. At the time, the main language for parallel processing was Ada, developed by the U.S. Department of Defense and a tribute to Ada Lovelace, which Gelernter considered an "inelegant and bulky" language.[6]

It was widely released in 1986, when Gelernter, along with his Yale colleague Nicholas Carriero and Sudhir Ahuja at AT&T Bell Laboratories, published "Linda and Friends" in an IEEE journal.[7]

By the early 1990s, Linda was widely used by corporations to more efficiently conduct big data analyses, including Wall Street brokerages as well as AT&T, Boeing, and United Technologies. There were even companies that specialized in creating specialized parallel computing applications based on Linda, the largest of which was Scientific Computing Associates, a New Haven-based company founded by several Yale computer scientists (Gelernter occasionally consulted for them but did not work there).[6] Interest in Linda dropped in the mid-1990s, only to make a comeback in the late 1990s with several corporations implementing Linda in Java, including Sun Microsystems and IBM.[3]

Overview

Model

The Linda model provides a distributed shared memory, known as a tuple space because its basic addressable unit is a tuple, an ordered sequence of typed data objects; specifically in Linda, a tuple is a sequence of up to 16 typed fields enclosed in parentheses". The tuple space is "logically shared by processes" which are referred to as workers that store and retrieve tuples.[8]

Operations

One of Linda's main advantages is that it's simple, with only six operations that workers perform on the tuples to access tuplespace:[9]

  • out: Puts a tuple into the tuplespace
  • in: Takes out a tuple that matches a given pattern from the tuplespace (if there's no match, the operation is blocked)
  • rd: Copies a tuple that matches a given pattern from the tuplespace (if there's no match, the operation is blocked)
  • eval: Creates a new process to evaluate tuples
  • inp: A non-blocking version of in (if there's no match, an error message is returned)
  • rdp: A non-blocking version of rd (if there's no match, an error message is returned)

Comparison

Compared to other parallel-processing models, Linda is more orthogonal in treating process coordination as a separate activity from computation, and it is more general in being able to subsume various levels of concurrency—uniprocessor, multi-threaded multiprocessor, or networked—under a single model. Its orthogonality allows processes computing in different languages and platforms to interoperate using the same primitives. Its generality allows a multi-threaded Linda system to be distributed across multiple computers without change.

Whereas message-passing models require tightly coupled processes sending messages to each other in some sequence or protocol, Linda processes are decoupled from other processes, communicating only through the tuplespace; a process need have no notion of other processes except for the kinds of tuples consumed or produced. Criticisms of Linda from the multiprocessing community tend to focus on the decreased speed of operations in Linda systems as compared to Message Passing Interface (MPI) systems.[citation needed] While not without justification, these claims were largely refuted for an important class of problems.[10] Detailed criticisms of the Linda model can also be found in Steven Ericsson-Zenith's book Process Interaction Models.[11]

Researchers have proposed more primitives to support different types of communication and co-ordination between (open distributed) computer systems, and to solve particular problems arising from various uses of the model.[citation needed] Researchers have also experimented with various means of implementing the virtual shared memory for this model.[citation needed] Many of these researchers proposed larger modifications to the original Linda model, developing a family of systems known as Linda-like systems and implemented as orthogonal technology (unlike original version). An example of this is the language Ease designed by Steven Ericsson-Zenith.

Linda's approach has also been compared to that of flow-based programming.[12]

Linda-calculus

The Linda-calculus is a formalisation of the above model with the difference that in the following [math]\displaystyle{ \mathrm{outeval} }[/math] subsumes both out and eval operations.[13]

Syntax

We abstract the concrete representation of tuples. We just assume that we have a set of tuples [math]\displaystyle{ t \in \mathcal{T} }[/math] and we are allowed to form and apply a substitution function [math]\displaystyle{ \sigma }[/math] on tuples substituting variables for terms that yields a tuple. For example, given we have a tuple [math]\displaystyle{ t = (\mathit{hello}, x) }[/math], then applying a substitution [math]\displaystyle{ \sigma = \{\mathit{world}/x\} }[/math] on [math]\displaystyle{ t }[/math] yields [math]\displaystyle{ (\mathit{hello}, \mathit{world}) }[/math]

The Linda-calculus processes are defined by the following grammar.

[math]\displaystyle{ P,Q ::= t \;|\; \mathrm{outeval}(P).Q \;|\; \mathrm{rd}(t).P \;|\; \mathrm{in}(t).P \;|\; P + Q \;|\; \mathbf{rec} X. P \;|\; X }[/math]

The syntax includes the aftermentioned Linda operations, non-deterministic choice, and recursion. The substitution function is extended to processes recursively.

Semantics

A tuple space is represented as a multiset of the processes. We write [math]\displaystyle{ M \,|\, P }[/math] for [math]\displaystyle{ M \uplus \{P\} }[/math] where [math]\displaystyle{ M }[/math] is a multiset, [math]\displaystyle{ \{P\} }[/math] a singleton multiset, and [math]\displaystyle{ \uplus }[/math] is the multiset union operation. The semantics is then defined as a reduction relation on a multiset [math]\displaystyle{ M \rightarrow M' }[/math] as follows.

[math]\displaystyle{ \begin{array}{lrcll} \text{(outeval)} & M \,|\, \mathrm{outeval}(P).Q &\rightarrow& M \,|\, P \,|\, Q & \\ \text{(read)} & M \,|\, \mathrm{rd}(t).P \,|\, t' &\rightarrow& M \,|\, P\sigma \,|\, t' & \text{if exists } \sigma \text{ such that } t\sigma = t' \\ \text{(input)} & M \,|\, \mathrm{in}(t).P \,|\, t' &\rightarrow& M \,|\, P\sigma & \text{if exists } \sigma \text{ such that } t\sigma = t' \\ \text{(left choice)} & M \,|\, P + Q &\rightarrow& M \,|\, P & \\ \text{(right choice)} & M \,|\, P + Q &\rightarrow& M \,|\, Q & \\ \text{(recursion)} & M \,|\, \mathbf{rec} X. P &\rightarrow& M \,|\, P\{\mathbf{rec} X. P/X\} & \\ \end{array} }[/math]

Note that (input) consumes the tuple [math]\displaystyle{ t' }[/math] from the tuple space whereas (read) only reads it. The resulting operational semantics is synchronous.

Implementations

Linda was originally implemented in C and Fortran, but has since been implemented in many programming languages, including:

Some of the more notable Linda implementations include:

  • C-Linda or TCP-Linda - the earliest commercial and a widespread implementation of virtual shared memory for supercomputers and clustered systems from Scientific Computing Associates, founded by Martin Schultz.
  • JavaSpaces - a Java-based tuplespace implementation that helped popularize distributed computing.
  • TSpaces - a Java-based tuplespace platform from IBM.[undue weight? ]

See also

References

  1. Ciancarini, Paolo. "Lecture 3: Coordination languages". http://www.cs.unibo.it/~cianca/wwwpages/seminari/3languages.pdf. 
  2. "David Gelernter, B.A. & M.A. '76". Yale Scientific. 14 February 2011. https://www.yalescientific.org/2011/02/david-gelernter-b-a-m-a-76/. 
  3. 3.0 3.1 Wells, George (July 2005). "Coordination Languages: Back to the Future with Linda". Conference: 2nd International Workshop on Coordination and Adaptation Techniques for Software Entities (Rhodes University). Archived from the original on 19 December 2009. https://web.archive.org/web/20091219121402/http://wcat05.unex.es/Documents/Wells.pdf. 
  4. Gelernter, David; Carriero, Nicholas (February 1992). "Coordination Languages and their Significance". Communications of the ACM 35 (2): 97–107. doi:10.1145/129630.129635. http://worrydream.com/refs/Gelernter%20-%20Coordination%20Languages%20and%20their%20Significance.pdf. 
  5. Carriero, Nicholas; Gelernter, David (1985-01-01). "The S/Net's Linda kernel (Extended abstract)". Proceedings of the tenth ACM symposium on Operating systems principles - SOSP '85. SOSP '85. New York, NY, USA: ACM. pp. 160–. doi:10.1145/323647.323643. ISBN 978-0897911740. 
  6. 6.0 6.1 Markoff, John (19 January 1992). "David Gelernter's Romance With Linda". The New York Times. https://www.nytimes.com/1992/01/19/business/david-gelernter-s-romance-with-linda.html. 
  7. Ahuja, Sudhir; Carriero, Nicholas; Gelernter, David (August 1986), "Linda and Friends", Computer (IEEE) 19b (8): 26–34, doi:10.1109/mc.1986.1663305 
  8. John H. Reynolds (December 2002). "Linda arouses a Sleeping Barber". Proceedings of the Winter Simulation Conference. 2. San Diego, CA: IEEE. pp. 1804–1808. doi:10.1109/WSC.2002.1166471. ISBN 0-7803-7614-5. http://charm.cs.uiuc.edu/cs498lvk/prog_models/linda/sleeping-barber.pdf. Retrieved 8 January 2022. 
  9. Masatoshi Seki (February 2017). The dRuby Book: Distributed and Parallel Computing with Ruby (0.1 ed.). Pragmatic Programmers. http://www.druby.org/sidruby/6-1-introducing-linda-and-rinda.html. Retrieved 9 January 2022. 
  10. Carriero (1 April 1994). "The Linda Alternative to message-passing systems". Parallel Computing 2 (4): 633–655. doi:10.1016/0167-8191(94)90032-9. https://heather.miller.am/teaching/cs7680/pdfs/Linda-Alternative-to-Message-Passing.pdf. 
  11. Ericsson-Zenith (1992). Process Interaction Models. Paris University. 
  12. J. Paul Rodker Morrison (2 July 2004). "Coordination Language". http://www.jpaulmorrison.com/cgi-bin/wiki.pl?CoordinationLanguage. 
  13. Cridlig, Régis; Goubault, Eric (1993). "Semantics and analysis of linda-based languages". Springer, Berlin, Heidelberg. doi:10.1007/3-540-57264-3_30. ISBN 978-3-540-57264-0.