After the Cloud: To Atomic Computation and Beyond
Posted on April 21, 2009 by oubiwann

After the Cloud:
To restate the problem: we've got cloud for systems and we've got cloud for a large number of applications. We don't have cloud for processes (e.g., custom, light-weight applications/long-running daemons).
Personally, I don't want a whole virtual machine to myself, I just need a tiny process space for my daemon. When my daemon starts getting slammed, I want new instances of it started in a cloud (and then killed when they're not needed).
What's more, over time, I want to be writing my daemon better and better... using less of everything (memory, CPU, disk) in subsequent iterations. I want this process cloud to be able to handle potentially significant changes in my software.
Dream Cloud
So, after all that stumbling around, thinking about servers in the data center as the horsepower behind distributed services, and then user PCs/laptops as a more power-friendly alternative, the obvious hit me: phones. They are almost ubiquitous. People leave them on, plugged in, and only use them for a fraction of that time. What if we were able to construct a cloud from cell phones? Hell, let's throw in Laptops and netbooks, too. And Xboxes, Wii, and TiVos. Theoretically, anything that could support (or be hacked to support) a virtual process space could become part of this cloud.
This could be just the platform for running small processes in a distributed environment. And making it a reality could prove to be quite lucrative. A forthcoming blog post will explore more about the possibilities involved with phone clouds... but for now, let's push things even further.
When I mentioned this idea to Chris Armstrong at the Ubuntu Developer Conference last December, he immediately asked me if I'd read Charles Stross a>' book Haltin g State. I had started it, but hadn't gotten to the part about the phones. A portion of Stross' future vision in that book dealt with the ability of users to legally run programs of other's phones. I really enjoyed the tale, but afterwards I was ready to explore other possibilities.
Horse-buggy Virtualization
So I sat down and pondered other possibilities over the course of several weeks. I kept trying to think like business visionaries, given a new resource to exploit. But finally I stopped that and tried just imagining the possibilities based on examples computing and business history.
What's the natural thing for businesses to do when someone invents something or improves something? Put new improvements to old uses, potentially reinventing old markets in the process. That's just the sort of thing that could happen with the cloudification of mobile devices.
For examples, imagine this:
- Phone cloud becomes a reality.
- Someone in a garage in Silicon Valley buys a bunch of cheap phones, gumstix, or other small ARM components, rips off the cases, and sells them in rack-mountable enclosures.
- Data centers start supplementing their old hardware offering with this new one that lets them use phone cloud tech (originally built for remote, hand-held devices) to sell tiny fractions of resources to users (on new, consolidated hardware... like having hundreds of phone uses in a single room with full bars, 24/7).
- With the changing hardware and continuing improvements in virtualization software, more abstraction takes place.
- Virtualization slowly goes from tool to prima materia, allowing designers not to focus on old-style, horse-drawn "machines" like your grandpa used to rack, but rather abstract process spaces that provide just what is needed, for example, to enable a daemon to run.
Democritus Meets Modern Software
So, let's say that my dream comes true: I can now push all my tiny apps into a cloud service and turn off the big machines I've got colocated throughout the US. But once this is in place, how can we improve our applications to take even better advantage of such a system, one so capable of massively distributing our running code?
This leads us to an almost metaphysical software engineering question: how small can you divide an application until you reach the limits of functionality, where any further division would be senseless bytes and syntax errors? In terms of running processes, what is your code atom?
Prior to a few years ago, the most common answer would likely have been "my script" or "my application". Unless, of course, you asked a Scheme programmer. Programming languages like Scheme, Haskell, and Erlang are finding rapidly increasing acceptance as solutions for distributed programming problems because functional programming languages lend themselves easily to the problem of concurrency and parallelism.
If we had a massive computing cloud (atmosphere, more likely!) where we could run code in virtual process spaces, we could theoretically go even further than running a daemon: we could split our daemon up into async functions. These distributed functions could be available as continuously running microthreads/greenlets/whatever. They could accept an input and produce an output. Composing distributed functions could result in a program. Programs could change, failover, improve, etc., just by adding or removing distributed functions or by changing their order.
From Atoms to Dynamic Programs
Once we've broken down our programs into distributed functions and have broken our concept of an "Operating System" down into virtual process spaces, we can start building a whole new world of software:
- Software becomes very dynamic, very distributed.
- The particulars of hardware become irrelevant (it just needs to be present, somewhere).
- We see an even more marked correlation between power consumption and code, where functions themselves could be measured in joules consumed per second.
- Just for fun, let's throw in dynamic selection of fuctions or even genetic algorithms, and we have ourselves one of the core branches of the predicted Ultra-large Scale Systems :-)
From a more practical perspective: today, I'm concerned about running daemons in the cloud. Tomorrow I could very well be concerned about finer granularity than that. Why not explore the potential results of such technology? Yes, it my prove infeasible now; but even still, it could render insights... and maybe more.
A Parting Message
Before I wind this blog post down, I'd like to paste a couple really excellent quotes. They are good not so much for their immediate content, but for the pregnant potentials they contain; for the directions they can point our musings... and engineerings. These are two similar thoughts about messaging from two radically different contexts. I leave you with these moments of Zen:
On the Erlang mail list, four years ago, Erlang creator Joe Armstrong posted thi s:
In Concurrency Oriented (CO) programming you concentrate on the concurrency and the messages between the processes. There is no sharing of data.Onthe Squeak mail list in 1998, Alan Kay had
[A program] should be thought of thousands of little black boxes all doing things in parallel - these black boxes can send and receive messages. Black boxes can detect errors in other black boxes
- that's all.
...
Erlang uses a simple functional language insidethe [black boxes] - this is not particularly interesting - any language thatdoes the job would do - the important bit is the concurrency.
...Smalltalk is not only NOT itssyntax or the class library, it is not even about classes. I'm sorry that Ilong ago coined the term "objects" for this topic because it gets many peopleto focus on the lesser idea.
The big idea is "messaging" – that iswhat the kernal of Smalltalk/Squeak is all about... The key in making greatand growable systems is much more to design how its modules communicate ratherthan what their internal properties and behaviors should be. Think of theinternet – to live, it (a) has to allow many different kinds of ideas andrealizations that are beyond any single standard and (b) to allow varyingdegrees of safe interoperability between these ideas.
If you focuson just messaging – and realize that a good metasystem can late bind thevarious 2nd level architectures used in objects – then much of the language-,UI-, and OS based discussions on this thread are really quitemoot.
Resources
Petri Nets π-Calculus - Ambient Calculus
Next up: The Business of Computing Atmospheres
Author | oubiwann |
---|---|
Date | April 21, 2009 |
Time | 10:36:08 |
Category | |
Tags | after-cloud cloud concurrency distributed systems erlang functional-programming lisp mobile-computing parallelism scheme smalltalk uls virtualization |
Line Count | 1 |
Word Count | 1517 |
Character Count | 11261 |
Comments?
This blog doesn't use standard (embedded) comments; however, since
the site is hosted on Github, if there is
something you'd like to share, please do so by
opening a
"comment" ticket!