Andrew Cooke | Contents | Latest | RSS | Previous | Next

C[omp]ute

Welcome to my blog, which was once a mailing list of the same name and is still generated by mail. Please reply via the "comment" links.

Always interested in offers/projects/new ideas. Eclectic experience in fields like: numerical computing; Python web; Java enterprise; functional languages; GPGPU; SQL databases; etc. Based in Santiago, Chile; telecommute worldwide. CV; email.

Personal Projects

Choochoo Training Diary

Last 100 entries

Surprise Paradox; [Books] Good Author List; [Computing] Efficient queries with grouping in Postgres; [Computing] Automatic Wake (Linux); [Computing] AWS CDK Aspects in Go; [Bike] Adidas Gravel Shoes; [Computing, Horror] Biological Chips; [Books] Weird Lit Recs; [Covid] Extended SIR Models; [Art] York-based Printmaker; [Physics] Quantum Transitions are not Instantaneous; [Computing] AI and Drum Machines; [Computing] Probabilities, Stopping Times, Martingales; bpftrace Intro Article; [Computing] Starlab Systems - Linux Laptops; [Computing] Extended Berkeley Packet Filter; [Green] Mainspring Linear Generator; Better Approach; Rummikub Solver; Chilean Poetry; Felicitations - Empowerment Grant; [Bike] Fixing Spyre Brakes (That Need Constant Adjustment); [Computing, Music] Raspberry Pi Media (Audio) Streamer; [Computing] Amazing Hack To Embed DSL In Python; [Bike] Ruta Del Condor (El Alfalfal); [Bike] Estimating Power On Climbs; [Computing] Applying Azure B2C Authentication To Function Apps; [Bike] Gearing On The Back Of An Envelope; [Computing] Okular and Postscript in OpenSuse; There's a fix!; [Computing] Fail2Ban on OpenSuse Leap 15.3 (NFTables); [Cycling, Computing] Power Calculation and Brakes; [Hardware, Computing] Amazing Pockit Computer; Bullying; How I Am - 3 Years Post Accident, 8+ Years With MS; [USA Politics] In America's Uncivil War Republicans Are The Aggressors; [Programming] Selenium and Python; Better Walking Data; [Bike] How Fast Before Walking More Efficient Than Cycling?; [COVID] Coronavirus And Cycling; [Programming] Docker on OpenSuse; Cadence v Speed; [Bike] Gearing For Real Cyclists; [Programming] React plotting - visx; [Programming] React Leaflet; AliExpress Independent Sellers; Applebaum - Twilight of Democracy; [Politics] Back + US Elections; [Programming,Exercise] Simple Timer Script; [News] 2019: The year revolt went global; [Politics] The world's most-surveilled cities; [Bike] Hope Freehub; [Restaurant] Mama Chau's (Chinese, Providencia); [Politics] Brexit Podcast; [Diary] Pneumonia; [Politics] Britain's Reichstag Fire moment; install cairo; [Programming] GCC Sanitizer Flags; [GPU, Programming] Per-Thread Program Counters; My Bike Accident - Looking Back One Year; [Python] Geographic heights are incredibly easy!; [Cooking] Cookie Recipe; Efficient, Simple, Directed Maximisation of Noisy Function; And for argparse; Bash Completion in Python; [Computing] Configuring Github Jekyll Locally; [Maths, Link] The Napkin Project; You can Masquerade in Firewalld; [Bike] Servicing Budget (Spring) Forks; [Crypto] CIA Internet Comms Failure; [Python] Cute Rate Limiting API; [Causality] Judea Pearl Lecture; [Security, Computing] Chinese Hardware Hack Of Supermicro Boards; SQLAlchemy Joined Table Inheritance and Delete Cascade; [Translation] The Club; [Computing] Super Potato Bruh; [Computing] Extending Jupyter; Further HRM Details; [Computing, Bike] Activities in ch2; [Books, Link] Modern Japanese Lit; What ended up there; [Link, Book] Logic Book; Update - Garmin Express / Connect; Garmin Forerunner 35 v 230; [Link, Politics, Internet] Government Trolls; [Link, Politics] Why identity politics benefits the right more than the left; SSH Forwarding; A Specification For Repeating Events; A Fight for the Soul of Science; [Science, Book, Link] Lost In Math; OpenSuse Leap 15 Network Fixes; Update; [Book] Galileo's Middle Finger; [Bike] Chinese Carbon Rims; [Bike] Servicing Shimano XT Front Hub HB-M8010; [Bike] Aliexpress Cycling Tops; [Computing] Change to ssh handling of multiple identities?; [Bike] Endura Hummvee Lite II; [Computing] Marble Based Logic; [Link, Politics] Sanity Check For Nuclear Launch; [Link, Science] Entropy and Life

© 2006-2017 Andrew Cooke (site) / post authors (content).

Cloud Computing

From: andrew@...

Date: Fri, 9 Jul 2010 18:13:57 -0400

This is a short summary of Cloud Computing and various related ("trendy")
technologies.

The driving force for much of these ideas seems to have come from Amazon and
Google as they have dealt with scaling their businesses (it's strange how much
Amazon is involved in this, rather than Microsoft, for example). The simple
idea behind Cloud Computing is that computers, and the basic functionality
they provide, are becoming "comoditized". The usual comparison is with an
Electric Company, that supplies electricity. Just as you don't care exactly
what generator is used, so you shouldn't need to care what hardware is used to
run your software.

There are two main approaches to this, one taken by Amazon, and the other by
Google.

Amazon's approach is "Infrastructure as a Service" (Amazon Web Services,
AWS). By that, they mean that they provide basic infrastructure as the
"commodity". So you can configure a "machine" and then run N instances, where
N varies depending on the current load. Similarly, you can access "databases"
and "permanent stores". So this is very like "normal" computing, except that
you have services that are "elastic" - they scale as required, typically by
adding instances.

Google's approach is "Platform as a Service". By that, they mean that they
offer a set of APIs that you can use to write a webservice, and then they will
run that service for you, scaling as necessary. So you work at a higher level
of abstraction: you write code that handles a single thread; Google will make
sure that as many threads as necessary run. For data storage, you save data to
a kind-of database (more like a hash table) and you don't care about the lower
level details.

So Google's "App Engine" approach is easier to use (although you need to learn
a whole new API in either Python or Java), but more limiting. In very simple
terms, Amazon's approach is like owning an expandable set of virtual machines
while Google's approach is more like having an infinitely powerful single
machine. One cool detail about Google's approach is that, for small services,
it's free.

And of course there are many more providers, generally doing things like
Amazon (partly because no-one apart from Google is big enough that it's worth
learning a new API just to use their service).


Now, tangentially related to that, are the spin-off technologies. Two are
particularly important, and are related: MapReduce and NoSQL.

To understand both, and how they are related, it's probably easiest to start
with Google. As you can imagine, Google's web search is a huge database spread
across many machines. And to run a search they need to run tasks on each
machine and then collect the results. This process is called MapReduce: "map"
is related to dividing the work out, doing the same thing on various machines;
"reduce" is the process of collecting the results together.

Now MapReduce doesn't make much sense without data. So the flip side of
MapReduce is the distributed data. And that implies some kind of distributed
database. It turns out that databases can do 2 out of 3 things well, where the
3 things are: availability; consistency; partitions. SQL databases are "AC",
but aren't so good at P. Spreading data across various machines requires
partitioning (P), so new technologies have appeared that are either "AP"
(don't always give consistent results) or "CP" (are not guaranteed
available). These tend not to use SQL and are collectively called "NoSQL".

Curiously, Google, who invented MapReduce, don't actually let the public use
it. However, Amazon do support it as a service, and there are many 3rd party
solutions that you can also run yourself (most famously, CouchDB, MongoDB,
HBase and Cassandra). All of these support MapReduce implementations. And
Google's App Engine (its PaaS - see above) does have support for something
similar, but it's not the same MapReduce that Google use internally. 

Andrew

More on CAP

From: andrew cooke <andrew@...>

Date: Mon, 12 Jul 2010 05:23:39 -0400

This clarifies CAP -
http://dbmsmusings.blogspot.com/2010/04/problems-with-cap-and-yahoos-little.html

Andrew

Comment on this post