<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom"><title>Simon Willison's Weblog: ec2</title><link href="http://simonwillison.net/" rel="alternate"/><link href="http://simonwillison.net/tags/ec2.atom" rel="self"/><id>http://simonwillison.net/</id><updated>2025-08-20T16:29:56+00:00</updated><author><name>Simon Willison</name></author><entry><title>AWS in 2025: The Stuff You Think You Know That’s Now Wrong</title><link href="https://simonwillison.net/2025/Aug/20/aws-in-2025/#atom-tag" rel="alternate"/><published>2025-08-20T16:29:56+00:00</published><updated>2025-08-20T16:29:56+00:00</updated><id>https://simonwillison.net/2025/Aug/20/aws-in-2025/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.lastweekinaws.com/blog/aws-in-2025-the-stuff-you-think-you-know-thats-now-wrong/"&gt;AWS in 2025: The Stuff You Think You Know That’s Now Wrong&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Absurdly useful roundup from Corey Quinn of AWS changes you may have missed that can materially affect your architectural decisions about how you use their services.&lt;/p&gt;
&lt;p&gt;A few that stood out to me:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;EC2 instances can now live-migrate between physical hosts, and can have their security groups, IAM roles and EBS volumes modified without a restart. They now charge by the second; they used to round up to the hour.&lt;/li&gt;
&lt;li&gt;S3 Glacier restore fees are now fast and predictably priced.&lt;/li&gt;
&lt;li&gt;AWS Lambdas can now run containers, execute for up to 15 minutes, use up to 10GB of RAM and request 10GB of /tmp storage.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Also this note on AWS's previously legendary resistance to shutting things down:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;While deprecations remain rare, they’re definitely on the rise; if an AWS service sounds relatively niche or goofy, consider your exodus plan before building atop it.&lt;/p&gt;
&lt;/blockquote&gt;

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="https://news.ycombinator.com/item?id=44962844"&gt;Hacker News&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/aws"&gt;aws&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lambda"&gt;lambda&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/s3"&gt;s3&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/corey-quinn"&gt;corey-quinn&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="aws"/><category term="ec2"/><category term="lambda"/><category term="s3"/><category term="corey-quinn"/></entry><entry><title>DSQL Vignette: Reads and Compute</title><link href="https://simonwillison.net/2024/Dec/6/dsql-vignette-reads-and-compute/#atom-tag" rel="alternate"/><published>2024-12-06T17:12:10+00:00</published><updated>2024-12-06T17:12:10+00:00</updated><id>https://simonwillison.net/2024/Dec/6/dsql-vignette-reads-and-compute/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="https://brooker.co.za/blog/2024/12/04/inside-dsql.html"&gt;DSQL Vignette: Reads and Compute&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Marc Brooker is one of the engineers behind AWS's new &lt;a href="https://simonwillison.net/2024/Dec/3/amazon-aurora-dsql/"&gt;Aurora DSQL&lt;/a&gt; horizontally scalable database. Here he shares all sorts of interesting details about how it works under the hood.&lt;/p&gt;
&lt;p&gt;The system is built around the principle of separating storage from compute: storage uses S3, while compute runs in Firecracker:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Each transaction inside DSQL runs in a customized Postgres engine inside a Firecracker MicroVM, dedicated to your database. When you connect to DSQL, we make sure there are enough of these MicroVMs to serve your load, and scale up dynamically if needed. We add MicroVMs in the AZs and regions your connections are coming from, keeping your SQL query processor engine as close to your client as possible to optimize for latency.&lt;/p&gt;
&lt;p&gt;We opted to use PostgreSQL here because of its pedigree, modularity, extensibility, and performance. We’re not using any of the storage or transaction processing parts of PostgreSQL, but are using the SQL engine, an adapted version of the planner and optimizer, and the client protocol implementation.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The system then provides strong repeatable-read transaction isolation using MVCC and EC2's high precision clocks, enabling reads "as of time X" including against nearby read replicas.&lt;/p&gt;
&lt;p&gt;The storage layer supports index scans, which means the compute layer can push down some operations allowing it to load a subset of the rows it needs, reducing round-trips that are affected by speed-of-light latency.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The overall approach here is &lt;em&gt;disaggregation&lt;/em&gt;: we’ve taken each of the critical components of an OLTP database and made it a dedicated service. Each of those services is independently horizontally scalable, most of them are shared-nothing, and each can make the design choices that is most optimal in its domain.&lt;/p&gt;
&lt;/blockquote&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/architecture"&gt;architecture&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/aws"&gt;aws&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/databases"&gt;databases&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/postgresql"&gt;postgresql&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/s3"&gt;s3&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/scaling"&gt;scaling&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/firecracker"&gt;firecracker&lt;/a&gt;&lt;/p&gt;



</summary><category term="architecture"/><category term="aws"/><category term="databases"/><category term="ec2"/><category term="postgresql"/><category term="s3"/><category term="scaling"/><category term="firecracker"/></entry><entry><title>Quoting Werner Vogels</title><link href="https://simonwillison.net/2011/Jan/5/werner/#atom-tag" rel="alternate"/><published>2011-01-05T15:13:00+00:00</published><updated>2011-01-05T15:13:00+00:00</updated><id>https://simonwillison.net/2011/Jan/5/werner/#atom-tag</id><summary type="html">
    &lt;blockquote cite="http://www.quora.com/How-and-why-did-Amazon-get-into-the-cloud-computing-business"&gt;&lt;p&gt;The excess capacity story is a myth. It was never a matter of selling excess capacity, actually within 2 months after launch AWS would have already burned through the excess Amazon.com capacity.  Amazon Web Services was always considered a business by itself, with the expectation that it could even grow as big as the Amazon.com retail operation.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p class="cite"&gt;&amp;mdash; &lt;a href="http://www.quora.com/How-and-why-did-Amazon-get-into-the-cloud-computing-business"&gt;Werner Vogels&lt;/a&gt;&lt;/p&gt;

    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/amazon-web-services"&gt;amazon-web-services&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/s3"&gt;s3&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/recovered"&gt;recovered&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="amazon-web-services"/><category term="ec2"/><category term="s3"/><category term="recovered"/></entry><entry><title>Bees with machine guns! Low-cost, distributed load-testing using EC2</title><link href="https://simonwillison.net/2010/Oct/27/bees/#atom-tag" rel="alternate"/><published>2010-10-27T23:04:00+00:00</published><updated>2010-10-27T23:04:00+00:00</updated><id>https://simonwillison.net/2010/Oct/27/bees/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://blog.apps.chicagotribune.com/2010/07/08/bees-with-machine-guns/"&gt;Bees with machine guns! Low-cost, distributed load-testing using EC2&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Great name for a useful project—Bees with machine guns is a Fabric script which fires up a bunch of EC2 instances, uses them to load test a website and then spins them back down again.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/fabric"&gt;fabric&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/performance"&gt;performance&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/scaling"&gt;scaling&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/recovered"&gt;recovered&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/load-testing"&gt;load-testing&lt;/a&gt;&lt;/p&gt;



</summary><category term="ec2"/><category term="fabric"/><category term="performance"/><category term="scaling"/><category term="recovered"/><category term="load-testing"/></entry><entry><title>What's powering the Content API?</title><link href="https://simonwillison.net/2010/May/24/solr/#atom-tag" rel="alternate"/><published>2010-05-24T14:08:00+00:00</published><updated>2010-05-24T14:08:00+00:00</updated><id>https://simonwillison.net/2010/May/24/solr/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.guardian.co.uk/open-platform/blog/what-is-powering-the-content-api"&gt;What&amp;#x27;s powering the Content API?&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
The new Guardian Content API runs on Solr, scaled using EC2 and Solr replication and with a Scala web service layer sitting between Solr and the API’s end users.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/apis"&gt;apis&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/contentapi"&gt;contentapi&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/guardian"&gt;guardian&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/openplatform"&gt;openplatform&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/scala"&gt;scala&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/scaling"&gt;scaling&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/solr"&gt;solr&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/recovered"&gt;recovered&lt;/a&gt;&lt;/p&gt;



</summary><category term="apis"/><category term="contentapi"/><category term="ec2"/><category term="guardian"/><category term="openplatform"/><category term="scala"/><category term="scaling"/><category term="solr"/><category term="recovered"/></entry><entry><title>Automate EC2 Instance Setup with user-data Scripts</title><link href="https://simonwillison.net/2010/Mar/11/ec2/#atom-tag" rel="alternate"/><published>2010-03-11T12:31:50+00:00</published><updated>2010-03-11T12:31:50+00:00</updated><id>https://simonwillison.net/2010/Mar/11/ec2/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://alestic.com/2009/06/ec2-user-data-scripts"&gt;Automate EC2 Instance Setup with user-data Scripts&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
I knew about EC2’s user-data feature—what I didn’t know is that the Alestic and Canonical images are configured so that if the user-data starts with #! the instance will automatically execute it as a shell script as soon as it boots up (after networking has been configured).

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="http://blog.ianbicking.org/2010/03/10/configuration-management-push-vs-pull/comment-page-1/#comment-155587"&gt;Paul Smith&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/deployment"&gt;deployment&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/sysadmin"&gt;sysadmin&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/userdata"&gt;userdata&lt;/a&gt;&lt;/p&gt;



</summary><category term="deployment"/><category term="ec2"/><category term="sysadmin"/><category term="userdata"/></entry><entry><title>Quoting Jeremy from Reddit</title><link href="https://simonwillison.net/2010/Jan/7/ec2/#atom-tag" rel="alternate"/><published>2010-01-07T22:10:37+00:00</published><updated>2010-01-07T22:10:37+00:00</updated><id>https://simonwillison.net/2010/Jan/7/ec2/#atom-tag</id><summary type="html">
    &lt;blockquote cite="http://blog.reddit.com/2010/01/why-did-we-take-reddit-down-for-71.html"&gt;&lt;p&gt;Since we moved to EC2, the number of unique users has gone up 50%, and pageviews are up more than 100%. To support this growth, we have added 30% more ram and 50% more CPU, yet because of Amazon's constant price reductions, we are actually paying less per month now than when we started.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p class="cite"&gt;&amp;mdash; &lt;a href="http://blog.reddit.com/2010/01/why-did-we-take-reddit-down-for-71.html"&gt;Jeremy from Reddit&lt;/a&gt;&lt;/p&gt;

    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloud-computing"&gt;cloud-computing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/pricing"&gt;pricing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/reddit"&gt;reddit&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="cloud-computing"/><category term="ec2"/><category term="pricing"/><category term="reddit"/></entry><entry><title>Guardian iPhone app</title><link href="https://simonwillison.net/2009/Dec/14/iphone/#atom-tag" rel="alternate"/><published>2009-12-14T13:29:29+00:00</published><updated>2009-12-14T13:29:29+00:00</updated><id>https://simonwillison.net/2009/Dec/14/iphone/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.guardian.co.uk/iphone"&gt;Guardian iPhone app&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Released today, ad-free, £2.39 for the application, has an excellent offline mode. I helped build the backend web service, which is a Django app running on EC2.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/django"&gt;django&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/guardian"&gt;guardian&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/iphone"&gt;iphone&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/python"&gt;python&lt;/a&gt;&lt;/p&gt;



</summary><category term="django"/><category term="ec2"/><category term="guardian"/><category term="iphone"/><category term="python"/></entry><entry><title>4store Amazon Machine Image</title><link href="https://simonwillison.net/2009/Nov/1/4store/#atom-tag" rel="alternate"/><published>2009-11-01T12:12:24+00:00</published><updated>2009-11-01T12:12:24+00:00</updated><id>https://simonwillison.net/2009/Nov/1/4store/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://thinklinks.wordpress.com/2009/10/27/4store-amazon-machine-image-and-billion-triple-challenge-data-set/"&gt;4store Amazon Machine Image&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Instructions for firing up an EC2 AMI running the recently released 4store high performance triple store and loading in 1.14 billion statements collected by crawling the semantic web.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/4store"&gt;4store&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ami"&gt;ami&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/semanticweb"&gt;semanticweb&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/semweb"&gt;semweb&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/triplestore"&gt;triplestore&lt;/a&gt;&lt;/p&gt;



</summary><category term="4store"/><category term="ami"/><category term="ec2"/><category term="semanticweb"/><category term="semweb"/><category term="triplestore"/></entry><entry><title>MySQL backups with EBS snapshots</title><link href="https://simonwillison.net/2009/Oct/13/labnotes/#atom-tag" rel="alternate"/><published>2009-10-13T12:34:42+00:00</published><updated>2009-10-13T12:34:42+00:00</updated><id>https://simonwillison.net/2009/Oct/13/labnotes/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://blog.labnotes.org/2009/10/13/mysql-backups-with-ebs-snapshots/"&gt;MySQL backups with EBS snapshots&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Assaf Arkin’s 45 line ruby script shows how to lock tables / XFS freeze / create an EBS snapshot / unfreeze and unlock, with hourly snapshots preserved for the past 24 hours and daily snapshots for the past week. Is an EBS snapshot enough to restore your data to somewhere other than EC2 though?


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/assaf-arkin"&gt;assaf-arkin&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/backups"&gt;backups&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloud"&gt;cloud&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ebs"&gt;ebs&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/mysql"&gt;mysql&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ruby"&gt;ruby&lt;/a&gt;&lt;/p&gt;



</summary><category term="assaf-arkin"/><category term="backups"/><category term="cloud"/><category term="ebs"/><category term="ec2"/><category term="mysql"/><category term="ruby"/></entry><entry><title>OpenStreetMap Rendering Database</title><link href="https://simonwillison.net/2009/Oct/10/amazon/#atom-tag" rel="alternate"/><published>2009-10-10T13:05:43+00:00</published><updated>2009-10-10T13:05:43+00:00</updated><id>https://simonwillison.net/2009/Oct/10/amazon/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2844"&gt;OpenStreetMap Rendering Database&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Amazon have added an OpenStreetMap snapshot as a public data set, thanks to some smart prompting by Jeremy Dunck.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/jeremy-dunck"&gt;jeremy-dunck&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/mapping"&gt;mapping&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/openstreetmap"&gt;openstreetmap&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/publicdatasets"&gt;publicdatasets&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/s3"&gt;s3&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="ec2"/><category term="jeremy-dunck"/><category term="mapping"/><category term="openstreetmap"/><category term="publicdatasets"/><category term="s3"/></entry><entry><title>Tile Drawer</title><link href="https://simonwillison.net/2009/Aug/26/tiledrawer/#atom-tag" rel="alternate"/><published>2009-08-26T09:32:56+00:00</published><updated>2009-08-26T09:32:56+00:00</updated><id>https://simonwillison.net/2009/Aug/26/tiledrawer/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://tiledrawer.com/"&gt;Tile Drawer&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
The most inspired use of EC2 I’ve seen yet: center a map on an area, pick a Cascadenik stylesheet URL (or write and link to your own) and Tile Drawer gives you an Amazon EC2 AMI and a short JSON snippet. Launch the AMI with the JSON as the “user data” parameter and you get your own OpenStreetMap tile rendering server, which self-configures on startup and starts rendering and serving tiles using your custom design.

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="http://mike.teczno.com/notes/tile-drawer.html"&gt;Mike Migurski&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cascadenik"&gt;cascadenik&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloud-computing"&gt;cloud-computing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/json"&gt;json&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/mapnik"&gt;mapnik&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/mapping"&gt;mapping&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/michal-migurski"&gt;michal-migurski&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/openstreetmap"&gt;openstreetmap&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/userdata"&gt;userdata&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="cascadenik"/><category term="cloud-computing"/><category term="ec2"/><category term="json"/><category term="mapnik"/><category term="mapping"/><category term="michal-migurski"/><category term="openstreetmap"/><category term="userdata"/></entry><entry><title>Introducing Amazon Virtual Private Cloud (VPC)</title><link href="https://simonwillison.net/2009/Aug/26/amazon/#atom-tag" rel="alternate"/><published>2009-08-26T08:42:24+00:00</published><updated>2009-08-26T08:42:24+00:00</updated><id>https://simonwillison.net/2009/Aug/26/amazon/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://aws.typepad.com/aws/2009/08/introducing-amazon-virtual-private-cloud-vpc.html"&gt;Introducing Amazon Virtual Private Cloud (VPC)&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Amazon now let you create a network of private EC2 instances completely isolated from the internet and the rest of the EC2 cloud, then link them back to your home network via a VPN.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/virtualprivatecloud"&gt;virtualprivatecloud&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/vpn"&gt;vpn&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="ec2"/><category term="virtualprivatecloud"/><category term="vpn"/></entry><entry><title>Memcached 1.4.0 released</title><link href="https://simonwillison.net/2009/Jul/17/memcached/#atom-tag" rel="alternate"/><published>2009-07-17T22:26:48+00:00</published><updated>2009-07-17T22:26:48+00:00</updated><id>https://simonwillison.net/2009/Jul/17/memcached/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://dustin.github.com/2009/07/16/memcached-1.4.html"&gt;Memcached 1.4.0 released&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
The big new feature is the (optional) binary protocol, which enables other features such as CAS-everywhere and efficient client-side replication. Maintainer Dustin Sallings has also released some useful sounding EC2 instances which automatically assign nearly all of their RAM to memcached on launch and shouldn’t need any further configuration.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/ami"&gt;ami&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/binary"&gt;binary&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/caching"&gt;caching&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cas"&gt;cas&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/dustin-sallings"&gt;dustin-sallings&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/memcached"&gt;memcached&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/performance"&gt;performance&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/scaling"&gt;scaling&lt;/a&gt;&lt;/p&gt;



</summary><category term="ami"/><category term="binary"/><category term="caching"/><category term="cas"/><category term="dustin-sallings"/><category term="ec2"/><category term="memcached"/><category term="performance"/><category term="scaling"/></entry><entry><title>Investigate your MP's expenses</title><link href="https://simonwillison.net/2009/Jun/18/investigate/#atom-tag" rel="alternate"/><published>2009-06-18T23:16:43+00:00</published><updated>2009-06-18T23:16:43+00:00</updated><id>https://simonwillison.net/2009/Jun/18/investigate/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://mps-expenses.guardian.co.uk/"&gt;Investigate your MP&amp;#x27;s expenses&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Launched today, this is the project that has been keeping me ultra-busy for the past week—we’re crowdsourcing the analysis of the 700,000+ scanned MP expenses documents released this morning. It’s the Guardian’s first live Django-powered application, and also the first time we’ve hosted something on EC2.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/crowdsourcing"&gt;crowdsourcing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/django"&gt;django&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/guardian"&gt;guardian&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/mpexpenses"&gt;mpexpenses&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/projects"&gt;projects&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/python"&gt;python&lt;/a&gt;&lt;/p&gt;



</summary><category term="crowdsourcing"/><category term="django"/><category term="ec2"/><category term="guardian"/><category term="mpexpenses"/><category term="projects"/><category term="python"/></entry><entry><title>EC2: Creating an Image</title><link href="https://simonwillison.net/2009/May/19/image/#atom-tag" rel="alternate"/><published>2009-05-19T19:50:55+00:00</published><updated>2009-05-19T19:50:55+00:00</updated><id>https://simonwillison.net/2009/May/19/image/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://docs.amazonwebservices.com/AmazonEC2/gsg/2006-10-01/creating-an-image.html"&gt;EC2: Creating an Image&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Here’s the easier way of creating your own AMI: start with a running instance in EC2, then customise it to fit your purposes and create a new bundle (and then AMI) using the ec2-bundle-vol command.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ami"&gt;ami&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloud-computing"&gt;cloud-computing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="ami"/><category term="cloud-computing"/><category term="ec2"/></entry><entry><title>HOWTO Building a self-bundling Debian AMI</title><link href="https://simonwillison.net/2009/May/19/ami/#atom-tag" rel="alternate"/><published>2009-05-19T19:49:22+00:00</published><updated>2009-05-19T19:49:22+00:00</updated><id>https://simonwillison.net/2009/May/19/ami/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://developer.amazonwebservices.com/connect/thread.jspa?messageID=67819"&gt;HOWTO Building a self-bundling Debian AMI&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Not as terrifying as you would have thought. Also contains some neat hints as to how some of the more magical parts of EC2 work (like the way your SSH public key automatically ends up in /root/.ssh/authorized_keys).


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ami"&gt;ami&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloud-computing"&gt;cloud-computing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/debian"&gt;debian&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="ami"/><category term="cloud-computing"/><category term="debian"/><category term="ec2"/></entry><entry><title>aws - simple access to Amazon EC2 and S3</title><link href="https://simonwillison.net/2009/May/19/aws/#atom-tag" rel="alternate"/><published>2009-05-19T11:38:40+00:00</published><updated>2009-05-19T11:38:40+00:00</updated><id>https://simonwillison.net/2009/May/19/aws/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://timkay.com/aws/"&gt;aws - simple access to Amazon EC2 and S3&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
The best command line client I’ve found for EC2 and S3. “aws put --progress my-bucket-name/large-file.tar.gz large-file.tar.gz” is particularly useful for uploading large files to S3. Written in Perl (with no dependencies), shelling out to curl to do the heavy lifting.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon-web-services"&gt;amazon-web-services&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/aws"&gt;aws&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cli"&gt;cli&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/curl"&gt;curl&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/perl"&gt;perl&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/s3"&gt;s3&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/tim-kay"&gt;tim-kay&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/tools"&gt;tools&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon-web-services"/><category term="aws"/><category term="cli"/><category term="curl"/><category term="ec2"/><category term="perl"/><category term="s3"/><category term="tim-kay"/><category term="tools"/></entry><entry><title>New Features for EC2: Elastic Load Balancing, Auto Scaling, and Amazon CloudWatch</title><link href="https://simonwillison.net/2009/May/18/amazon/#atom-tag" rel="alternate"/><published>2009-05-18T10:07:56+00:00</published><updated>2009-05-18T10:07:56+00:00</updated><id>https://simonwillison.net/2009/May/18/amazon/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://aws.typepad.com/aws/2009/05/new-aws-load-balancing-automatic-scaling-and-cloud-monitoring-services.html"&gt;New Features for EC2: Elastic Load Balancing, Auto Scaling, and Amazon CloudWatch&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
EC2 now fulfils the promise of “magic scaling in the cloud” out of the box—CloudWatch monitors performance of your EC2 instances without needing to install any monitoring software, Auto Scaling allows you to configure “scaling triggers” which start up new instances based on information from CloudWatch, and Elastic Load Balancing balances requests across all available instances.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/autoscaling"&gt;autoscaling&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloud-computing"&gt;cloud-computing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloudwatch"&gt;cloudwatch&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/elasticloadbalancing"&gt;elasticloadbalancing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/scaling"&gt;scaling&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="autoscaling"/><category term="cloud-computing"/><category term="cloudwatch"/><category term="ec2"/><category term="elasticloadbalancing"/><category term="scaling"/></entry><entry><title>Ubuntu brings advanced Screen features to the masses</title><link href="https://simonwillison.net/2009/Apr/28/screen/#atom-tag" rel="alternate"/><published>2009-04-28T21:52:50+00:00</published><updated>2009-04-28T21:52:50+00:00</updated><id>https://simonwillison.net/2009/Apr/28/screen/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://arstechnica.com/open-source/news/2009/04/ubuntu-brings-advanced-screen-features-to-the-masses.ars"&gt;Ubuntu brings advanced Screen features to the masses&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Ubuntu 9.04’s screen-profiles package adds a taskbar to screen and emulates the gnome panel. You can even add a widget showing the cost of your current EC2 session.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/linux"&gt;linux&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/screen"&gt;screen&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ubuntu"&gt;ubuntu&lt;/a&gt;&lt;/p&gt;



</summary><category term="ec2"/><category term="linux"/><category term="screen"/><category term="ubuntu"/></entry><entry><title>Experiences deploying a large-scale infrastructure in Amazon EC2</title><link href="https://simonwillison.net/2009/Apr/10/ec2/#atom-tag" rel="alternate"/><published>2009-04-10T09:43:10+00:00</published><updated>2009-04-10T09:43:10+00:00</updated><id>https://simonwillison.net/2009/Apr/10/ec2/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://agiletesting.blogspot.com/2009/04/experiences-deploying-large-scale.html"&gt;Experiences deploying a large-scale infrastructure in Amazon EC2&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
“At OpenX we recently completed a large-scale deployment of one of our server farms to Amazon EC2. Here are some lessons learned from that experience.”


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/griggheorghiu"&gt;griggheorghiu&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/openx"&gt;openx&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/scaling"&gt;scaling&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="ec2"/><category term="griggheorghiu"/><category term="openx"/><category term="scaling"/></entry><entry><title>Amazon Elastic MapReduce</title><link href="https://simonwillison.net/2009/Apr/2/mapreduce/#atom-tag" rel="alternate"/><published>2009-04-02T10:25:37+00:00</published><updated>2009-04-02T10:25:37+00:00</updated><id>https://simonwillison.net/2009/Apr/2/mapreduce/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://aws.amazon.com/elasticmapreduce/"&gt;Amazon Elastic MapReduce&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Hadoop as a service. Basically a web based GUI around Hadoop—you could roll this yourself on EC2 but for a small markup on regular EC2 prices you get to avoid the extra work setting everything up. Data processing scripts can be written in Java, Ruby, Perl, Python, PHP, R, or C++ and are loaded in to S3 before firing off the job.

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="http://joedrumgoole.com/blog/2009/04/02/amazon-web-services-adds-map-reduce/"&gt;Joe Drumgoole&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/amazon-web-services"&gt;amazon-web-services&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloud-computing"&gt;cloud-computing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/hadoop"&gt;hadoop&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/mapreduce"&gt;mapreduce&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/s3"&gt;s3&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="amazon-web-services"/><category term="cloud-computing"/><category term="ec2"/><category term="hadoop"/><category term="mapreduce"/><category term="s3"/></entry><entry><title>maps from scratch</title><link href="https://simonwillison.net/2009/Mar/15/maps/#atom-tag" rel="alternate"/><published>2009-03-15T13:20:23+00:00</published><updated>2009-03-15T13:20:23+00:00</updated><id>https://simonwillison.net/2009/Mar/15/maps/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://mike.teczno.com/notes/maps-from-scratch.html"&gt;maps from scratch&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
An idea whose time has come: using EC2 AMIs for tutorial sessions to give everyone a pre-configured environment.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/cloud-computing"&gt;cloud-computing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/mapping"&gt;mapping&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/michal-migurski"&gt;michal-migurski&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/tutorials"&gt;tutorials&lt;/a&gt;&lt;/p&gt;



</summary><category term="cloud-computing"/><category term="ec2"/><category term="mapping"/><category term="michal-migurski"/><category term="tutorials"/></entry><entry><title>Introducing the Karmic Koala, our mascot for Ubuntu 9.10</title><link href="https://simonwillison.net/2009/Feb/21/koala/#atom-tag" rel="alternate"/><published>2009-02-21T17:19:18+00:00</published><updated>2009-02-21T17:19:18+00:00</updated><id>https://simonwillison.net/2009/Feb/21/koala/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="https://lists.ubuntu.com/archives/ubuntu-devel-announce/2009-February/000536.html"&gt;Introducing the Karmic Koala, our mascot for Ubuntu 9.10&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Ubuntu 9.10 will have a strong focus on cloud computing, including tools for easily creating EC2 AMIs and Eucalyptus, an open-source system for running an EC2-compatible cloud in your own data centre.

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="http://blog.gardeviance.org/2009/02/happiness-is-koala.html"&gt;Simon Wardley&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/cloud-computing"&gt;cloud-computing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/eucalyptus"&gt;eucalyptus&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/karmickoala"&gt;karmickoala&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/linux"&gt;linux&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/mark-shuttleworth"&gt;mark-shuttleworth&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ubuntu"&gt;ubuntu&lt;/a&gt;&lt;/p&gt;



</summary><category term="cloud-computing"/><category term="ec2"/><category term="eucalyptus"/><category term="karmickoala"/><category term="linux"/><category term="mark-shuttleworth"/><category term="ubuntu"/></entry><entry><title>Load Balancing in Amazon EC2 with HAProxy</title><link href="https://simonwillison.net/2009/Feb/5/haproxy/#atom-tag" rel="alternate"/><published>2009-02-05T23:12:24+00:00</published><updated>2009-02-05T23:12:24+00:00</updated><id>https://simonwillison.net/2009/Feb/5/haproxy/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://agiletesting.blogspot.com/2009/02/load-balancing-in-amazon-ec2-with.html"&gt;Load Balancing in Amazon EC2 with HAProxy&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Solid tutorial introduction to HAProxy.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/griggheorghiu"&gt;griggheorghiu&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/haproxy"&gt;haproxy&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/load-balancing"&gt;load-balancing&lt;/a&gt;&lt;/p&gt;



</summary><category term="ec2"/><category term="griggheorghiu"/><category term="haproxy"/><category term="load-balancing"/></entry><entry><title>Manage Amazon EC2 With New Web-Based AWS Management Console</title><link href="https://simonwillison.net/2009/Jan/9/amazon/#atom-tag" rel="alternate"/><published>2009-01-09T09:34:49+00:00</published><updated>2009-01-09T09:34:49+00:00</updated><id>https://simonwillison.net/2009/Jan/9/amazon/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://aws.typepad.com/aws/2009/01/manage-amazon-ec2-with-new-webbased-console.html"&gt;Manage Amazon EC2 With New Web-Based AWS Management Console&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Finally! I’m amazed it took Amazon so long to do this. Managing EC2 instances from a custom Firefox extension was pretty bizarre. It’s a very nice interface, built on top of YUI. Unfortunately you still have to manage your entire virtual server farm using a single shared Amazon account.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon"&gt;amazon&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/aws"&gt;aws&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloud-computing"&gt;cloud-computing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/javascript"&gt;javascript&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/yui"&gt;yui&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon"/><category term="aws"/><category term="cloud-computing"/><category term="ec2"/><category term="javascript"/><category term="yui"/></entry><entry><title>How Tarsnap uses Amazon Web Services</title><link href="https://simonwillison.net/2008/Dec/14/tarsnap/#atom-tag" rel="alternate"/><published>2008-12-14T19:35:28+00:00</published><updated>2008-12-14T19:35:28+00:00</updated><id>https://simonwillison.net/2008/Dec/14/tarsnap/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.daemonology.net/blog/2008-12-14-how-tarsnap-uses-aws.html"&gt;How Tarsnap uses Amazon Web Services&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Useful case study, including some thoughts on SimpleDB.

    &lt;p&gt;&lt;small&gt;&lt;/small&gt;Via &lt;a href="http://www.reddit.com/r/programming/"&gt;programming&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon-web-services"&gt;amazon-web-services&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/aws"&gt;aws&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloud-computing"&gt;cloud-computing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/s3"&gt;s3&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/simpledb"&gt;simpledb&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/tarsnap"&gt;tarsnap&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon-web-services"/><category term="aws"/><category term="cloud-computing"/><category term="ec2"/><category term="s3"/><category term="simpledb"/><category term="tarsnap"/></entry><entry><title>Ubuntu and Debian AMIs for Amazon EC2</title><link href="https://simonwillison.net/2008/Dec/8/ubuntu/#atom-tag" rel="alternate"/><published>2008-12-08T18:04:09+00:00</published><updated>2008-12-08T18:04:09+00:00</updated><id>https://simonwillison.net/2008/Dec/8/ubuntu/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://alestic.com/"&gt;Ubuntu and Debian AMIs for Amazon EC2&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Exactly what it says on the tin.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amis"&gt;amis&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/debian"&gt;debian&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/linux"&gt;linux&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ubuntu"&gt;ubuntu&lt;/a&gt;&lt;/p&gt;



</summary><category term="amis"/><category term="debian"/><category term="ec2"/><category term="linux"/><category term="ubuntu"/></entry><entry><title>Amazon SimpleDB a complete flop?</title><link href="https://simonwillison.net/2008/Dec/2/fluidinfo/#atom-tag" rel="alternate"/><published>2008-12-02T10:17:48+00:00</published><updated>2008-12-02T10:17:48+00:00</updated><id>https://simonwillison.net/2008/Dec/2/fluidinfo/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.fluidinfo.com/terry/2008/12/02/amazon-simpledb-a-complete-flop/"&gt;Amazon SimpleDB a complete flop?&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Terry asks if anyone is actually using SimpleDB (related Google searches indicate not, and I’ve personally not heard of anyone using it despite plenty of usage of S3 and EC2). One factor might be that lock-in to EC2 and S3 is pretty small, but if you rely on SimpleDB you’ll need to rewrite your entire application to escape.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazon-web-services"&gt;amazon-web-services&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloud"&gt;cloud&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/lockin"&gt;lockin&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/s3"&gt;s3&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/simpledb"&gt;simpledb&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/terry-jones"&gt;terry-jones&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazon-web-services"/><category term="cloud"/><category term="ec2"/><category term="lockin"/><category term="s3"/><category term="simpledb"/><category term="terry-jones"/></entry><entry><title>Trying out Windows on EC2</title><link href="https://simonwillison.net/2008/Oct/24/second/#atom-tag" rel="alternate"/><published>2008-10-24T09:57:55+00:00</published><updated>2008-10-24T09:57:55+00:00</updated><id>https://simonwillison.net/2008/Oct/24/second/#atom-tag</id><summary type="html">
    
&lt;p&gt;&lt;strong&gt;&lt;a href="http://www.myelin.co.nz/post/2008/10/24/#200810242"&gt;Trying out Windows on EC2&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
Phillip Pearson provides the missing documentation.


    &lt;p&gt;Tags: &lt;a href="https://simonwillison.net/tags/amazonaws"&gt;amazonaws&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/cloud-computing"&gt;cloud-computing&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/ec2"&gt;ec2&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/phillip-pearson"&gt;phillip-pearson&lt;/a&gt;, &lt;a href="https://simonwillison.net/tags/windows"&gt;windows&lt;/a&gt;&lt;/p&gt;



</summary><category term="amazonaws"/><category term="cloud-computing"/><category term="ec2"/><category term="phillip-pearson"/><category term="windows"/></entry></feed>