up vote 4 down vote favorite
share [g+] share [fb]

I've been doing socket programming for a while in C++, and kind of got tired of having to write the same code to handle for errors, serializing / deserializing data, etc.

Are there programming languages out there that have first-class support for distributed system?

link|improve this question

feedback

5 Answers

up vote 10 down vote accepted

Erlang, as described by Wikipedia:

It was designed by Ericsson to support distributed, fault-tolerant, soft-real-time, non-stop applications.

You might also want to read the Distributed Erlang section of their manual.

However, note that Erlang is a functional language and will require a much different paradigm of thought as compared to C++.

link|improve this answer
1  
Erlang is definitely the poster-child. While there's literally thousands of languages that are specifically designed for distributed programming, Erlang is by far the most mainstream (and in fact pretty much the only one). – Jörg W Mittag Jul 23 '10 at 23:26
I chose to accept this answer because Erlang is used in real-world systems and is mainstream, even though, as pointed out by Jorg, there are thousand others built for distributed system. – ShaChris23 Jul 23 '10 at 23:45
What about Scala? – chris.r Jul 24 '10 at 0:14
I dont think Scala "natively" supports distributed programming. However, with Terracotta, see: jonasboner.com/2008/01/25/…. Or see Swarm: lambda-the-ultimate.org/node/3626 – ShaChris23 Jul 24 '10 at 0:33
1  
This also looks quite interesting: akkasource.org – ShaChris23 Jul 24 '10 at 0:39
feedback

Parallel Python is a python module which provides mechanism for parallel execution of python code on SMP (systems with multiple processors or cores) and clusters (computers connected via network):

Features:

  • Parallel execution of python code on SMP and clusters
  • Easy to understand and implement job-based parallelization technique (easy to convert serial application in parallel)
  • Automatic detection of the optimal configuration (by default the number of worker processes is set to the number of effective processors)
  • Dynamic processors allocation (number of worker processes can be changed at runtime)
  • Low overhead for subsequent jobs with the same function (transparent caching is implemented to decrease the overhead)
  • Dynamic load balancing (jobs are distributed between processors at runtime)
  • Fault-tolerance (if one of the nodes fails tasks are rescheduled on others)
  • Auto-discovery of computational resources
  • Dynamic allocation of computational resources (consequence of auto-discovery and fault-tolerance)
  • SHA based authentication for network connections
  • Cross-platform portability and interoperability (Windows, Linux, Unix, Mac OS X)
  • Cross-architecture portability and interoperability (x86, x86-64, etc.)
  • Open source

One can get a quick idea of how the code might look by looking at the quick-start guide for clusters.

link|improve this answer
feedback

Reia is a scripting language for distributed system:

Reia aims to expose the powerful capabilities of Erlang in a way which is easier for your average programmer to understand. It aims to bring the beauty and simplicity of Ruby, a language which is easy and fun to program in, to Erlang, a language which very few will think of as easy or fun to use.

link|improve this answer
3  
Note that Reia is still in very early stages of development. Heck, it is still in very early stages of design. Not too long ago, Tony ripped out the entire syntax, for example. – Jörg W Mittag Jul 23 '10 at 23:27
feedback

Bloom is a new domain-specific language for distributed programming. The current alpha release is embedded in Ruby, and targeted at early adopters. Bloom leverages new research on "CALM" analysis to provide tools that pinpoint distributed consistency and coordination issues in your code.

link|improve this answer
feedback

Go-Lang from Google is a pretty new language. It seems that among its many attributes, it may some day be suitable for large distributed systems, at least according to these folks at heroku.

Go seems to be focused on concurrency issues, threading primitives in the language, and so on, and this is perhaps a necessary-but-not-quite-sufficient starting point for distributed systems. Perhaps their thoughts will be helpful to you. I wouldn't call Go-lang's support for distributed systems "first-class", but rather, say that it would be possible to build a first class distributed-systems framework using Go's library and language primitives.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.