• Home
  • Categories
    • Analysis
    • Commentary
    • General
    • State of the Cloud
  • About
  • Subscribe via RSS

Anatomy of an Amazon EC2 Resource ID

September 21st, 2009  |  Published in Analysis  |  62 Comments

New technique enables observation of EC2 usage, uncovers stunning data

Each time you allocate a resource using EC2 – an instance, a volume or a snapshot – you receive a unique identifier. This is the EC2 resource ID. Have you ever wondered what this ID represents? Well, I did. After noticing similarities between the IDs of resources requested in close succession, I started digging.

The outcome of this digging is a definition of the components that formulate an EC2 resource ID. The marvel is that this definition allows us to externally count the number of resources provisioned within a certain time frame – enabling us for the first time to observe EC2′s usage patterns. For example, we can count how many instances are launched on a certain day, in a given EC2 region.

Before continuing, I’d like to emphasize that these findings are circumstantial. While the patterns are indisputable, there remain unknowns and quirks that remind us that such “black box” observation has its limits. Note also that we can estimate how many new resources are created but not how many are already active, how many were later deleted, etc. The total number of servers running on EC2 remains a mystery.

Results

In one 24-hour period measured in September 2009, the estimation indicated the following volume of usage on Amazon EC2′s us-east-1 region:

  • 50,242 instances requested
  • 12,840 EBS volumes requested
  • 30,925 EBS snapshots requested
  • 41,121 reservations requested
    • Disambiguation: a reservation in this context is an atomic launch of one or more instances. This does not imply a reserved instance. For example, if you launch 1 instance, you get 1 instance ID and 1 reservation ID; if you launch 2 instances in one command, you get 2 instance IDs and still 1 reservation ID.

These numbers are impressive, to say the least. Even more impressive is a small hint, lurking between the numbers, that implies that just over the past month Amazon crossed a significant threshold (see below for more details):

8.4 million EC2 instances launched (since EC2′s debut).

EC2 Resource Usage

UPDATE (Oct 7th 2009): RightScale applied the findings for the two years worth of data they have in their systems. Based on that data, they estimate the number of instances launched is actually 15.5 million! They also plotted the numbers over two years – worth checking out.

Anatomy of a Resource ID

So how were the numbers above calculated? To find out, let’s decompose an EC2 resource ID. After comparing hundreds of IDs, this opaque identifier turned out to be a little more transparent than you’d expect.

EC2 Resource ID

Type

The most trivial of the fields, the type is one of the following values, depending on the resource type:

  • i – instance
  • r – reservation
  • vol – EBS volume
  • snap – EBS snapshot
  • ami – Amazon machine image
  • aki – Amazon kernel image
  • ari – Amazon ramdisk image

Inner ID

The Inner ID is a 16-bit counter of resources allocated. Each time a resource is requested, the Inner ID increments by one. For instance and reservation IDs, it increments by two (i.e., these Inner IDs are always even). Instead of counting from 0-FFFF as you’d expect, the Inner ID uses the following cycle:

  • 4000-7FFF
  • 0000-3FFF
  • C000-FFFF
  • 8000-BFFF

(This cycle can be easily normalized by XORing with 4000.) When the Inner ID has exhausted its space, a new series begins (see below) and the cycle restarts.

Series Marker

For a given resource type, there is one active 8-bit Series ID. This Series ID, however, is not embedded directly into the resource ID. Instead, it is XORed to the leftmost 8 bits of the Inner ID. The result, which I call the Series Marker, is embedded in the ID to the left of the Inner ID.

For example, on the resource ID above the Series ID would be e5 = a7 XOR 42.

Series IDs usually decrement by one each time the Inner ID completes a cycle. I say “usually” because while this is the most common behavior, from time to time Series IDs seem to jump around in a pattern which is yet to be explained.

UPDATE (Oct 7th 2009): RightScale contributed the missing piece: to normalize a series ID, XOR with E5 – this irons out the “jumps” I noticed perfectly.

Superseries Marker

For a given resource type, there is one active 8-bit Superseries ID. Like the Series ID, the Superseries ID is not embedded directly into the resource ID. Instead, it is XORed to the rightmost 8 bits of the Inner ID. The result – the Superseries Marker – is the leftmost byte of the resource ID.

For example, on the resource ID above the Superseries ID would be 69 = 31 XOR 58.

The Superseries ID changes so rarely that originally I had assumed it was some kind of checksum. This would have been odd as it limits the total available IDs to 224 = 16.8 million. Up to very recently, the Superseries ID for all resource types – instances, images, volumes, snapshots, etc. – was 69 (in the us-east-1 region (for eu-west-1 the Superseries ID is 74). These days, new instances use the Superseries ID 68. This subtle change, unnoticed by the industry, may hint at an astonishing achievement: 8.4 million instances launched since EC2′s debut! (Instance IDs are even so 8.4M = 16.8M / 2.)

UPDATE (Oct 7th 2009): RightScale suggested to normalize the Superseries ID by XORing with 69. In this technique, the superseries ID for us-east-1 was 0, and the recent change incremented it to 1.

Regions

Note that since each EC2 region is a completely separate system, the IDs in each region are independent of each other.

Counting Resources

Now that we have an idea of what an ID represents, how do we use that knowledge to estimate the number of resources provisioned by EC2 in a given time frame? The process is quite straightforward, and can be applied to time frames ranging from minutes up to weeks, months and years.

During the 24-hour period measured, one resource of each type was requested from EC2 every hour. In practice this means an instance was launched, an EBS volume was created and an EBS snapshot taken. The IDs that EC2 assigned to these resources were recorded, along with the time of their creation (as indicated in the timestamp returned from EC2 itself). Finally, the resource were released (instance terminated, volume and snapshot deleted) in order to minimize expenses. This process repeated every hour, which seems to be frequent enough so as not to miss any series rollovers.

The results – IDs and timestamps – were then analyzed using a combination of scripts and Excel spreadsheets. The Superseries, Series and Inner IDs were extracted from the resource IDs. Finally, the IDs were normalized and combined to yield a single number – a number that represents the continuum of resource IDs.

With this number, it’s plain sailing to measure or plot how many resources EC2 provisioned between any two samples.

Summary

The analysis, measurements and description above are based purely on observation. I cannot make any guarantees as to the accuracy of the technique.  Even with confidence regarding the analysis of an ID, whether or not we can use that to infer overall usage is open to debate. In theory, Amazon could be allocating resources internally for various purposes. Is this performed on a scale large enough to throw the figures off course? Only time (and Amazon) will tell.

Final word: if you have any insights, corrections or additions to this research – please feel free to jump in the conversation or email me. I’ll be sure to give credit in updates or future posts.

Thanks to Eric Hammond, Nati Shalom and Avner Algom and Peter Weinstein of the IGT for reading drafts of this.

If you enjoyed the post, please share it:
  • Digg
  • del.icio.us
  • LinkedIn
  • Slashdot
  • StumbleUpon
  • Twitter
  • Suggest to Techmeme via Twitter

Responses

Feed
  1. Shlomo says:

    September 21st, 2009 at 1:11 pm (#)

    Guy,

    Thanks for this fantastic analysis of these opaque IDs.

    Can you share the original spreadsheet data so others can try to crack the remaining unknowns?

  2. Guy Rosen says:

    September 21st, 2009 at 2:41 pm (#)

    @Shlomo,

    Thanks for the complements. I will consider sharing my IDs, although perhaps it might be something that is better to send in private to any interested parties.

    The significant gap remains the Series IDs – as I said, sometimes they jump instead of just decreasing by 1 as expected. In the day sampled for the chart this happened once, and I had to “correct” in order for the graph to line up.

    In previous data sets I collected this also happened: the Series ID jumps up by a few numbers instead of just decrementing.

    BTW, if you have various logs with IDs and timestamps from your own activity, it would be great to receive additional confirmation of the findings.

  3. Tweets that mention Anatomy of an Amazon EC2 Resource ID :: Jack of all Clouds -- Topsy.com says:

    September 21st, 2009 at 3:17 pm (#)

    [...] This post was mentioned on Twitter by garnaat, Guy Rosen, Carl Brooks, Shlomo Swidlerand others. Shlomo Swidler said: RT @guyro: How to measure @AmazonAWS adoption by analyzing #EC2 ID numbers – http://bit.ly/4zHHAk [...]

  4. mike says:

    September 21st, 2009 at 4:11 pm (#)

    where exactly are you obtaining the id’s from?

  5. Guy Rosen says:

    September 21st, 2009 at 4:12 pm (#)

    @mike – I simply provision instances/volumes/snapshots from my own EC2 account.

  6. mike says:

    September 21st, 2009 at 4:12 pm (#)

    disregard my previous comment – its early and i missed that part ;/

  7. mike says:

    September 21st, 2009 at 4:13 pm (#)

    great insight btw – thanks!

  8. CloudBzz says:

    September 21st, 2009 at 5:43 pm (#)

    Guy – this is amazing analysis. Have you been able to uncover the instance ID pattern in other clouds, or just Amazon?

  9. Dmitriy says:

    September 21st, 2009 at 5:56 pm (#)

    Phenomenal depth – thank you very much for this research.

    I have been casually observing IDs and also noticed their tendency to be even. But lately (say within a month) I have been noticing more odd numbers.

    It also looked to me like EU region started having more odd IDs sooner than US – which makes me thing a better randomization of IDs was in works for some time and was deployed to EU first.

    Just FYI.

  10. caleb says:

    September 21st, 2009 at 6:13 pm (#)

    I agree with most of what you say, but I have a couple of long running instances that have an odd INNER id.

    i-284f3a41

    for example

    99% of my instances however, are even.

  11. Guy Rosen says:

    September 21st, 2009 at 6:51 pm (#)

    @CloudBzz – have not ventured this deep into other cloud providers YET :-)

  12. dubek says:

    September 21st, 2009 at 7:20 pm (#)

    I guess it’s another case of the German Tank Problem:

    http://en.wikipedia.org/wiki/German_tank_problem

    Very nice work!

  13. Guy Rosen says:

    September 21st, 2009 at 8:02 pm (#)

    @dubek – wow, I learned something today! Luckily it’s easier for us: our “tanks” are imprinted with dates of manufacture!

  14. Serviço de Cloud Computing da Amazon em larga expansão | EstratégiasIT says:

    September 22nd, 2009 at 10:31 am (#)

    [...] EC2, o serviço de Cloud Computing da Amazon, encontra-se em larga expansão. Há um estudo que estima o lançamento de 50.000 novas instâncias por dia. O consultor tecnológico Guy Rosen [...]

  15. Four short links: 22 September 2009 | Tech-monkey.info Blogs says:

    September 22nd, 2009 at 12:22 pm (#)

    [...] EC2 Usage Guessed From Sequential IDs — The Superseries ID changes so rarely that originally I had assumed it was some kind of checksum. This would have been odd as it limits the total available IDs to 224 = 16.8 million. Up to very recently, the Superseries ID for all resource types – instances, images, volumes, snapshots, etc. – was 69 (in the us-east-1 region (for eu-west-1 the Superseries ID is 74). These days, new instances use the Superseries ID 68. This subtle change, unnoticed by the industry, may hint at an astonishing achievement: 8.4 million instances launched since EC2’s debut! (Instance IDs are even so 8.4M = 16.8M / 2.) (via mattb on delicious) The real-time baby (what this means for media absorption) Microsoft’s Apple employee theft shocker! [...]

  16. Corey Leong (coreyleong) 's status on Tuesday, 22-Sep-09 12:07:06 UTC - Identi.ca says:

    September 22nd, 2009 at 2:07 pm (#)

    [...] helpful article on ec2's resource id's http://www.jackofallclouds.com/2009/09/anatomy-of-an-amazon-ec2-resource-id/ [...]

  17. Four short links: 22 September 2009 | Biginfo says:

    September 23rd, 2009 at 12:19 am (#)

    [...] EC2 Usage Guessed From Sequential IDs — The Superseries ID changes so rarely that originally I had assumed it was some kind of checksum. This would have been odd as it limits the total available IDs to 224 = 16.8 million. Up to very recently, the Superseries ID for all resource types – instances, images, volumes, snapshots, etc. – was 69 (in the us-east-1 region (for eu-west-1 the Superseries ID is 74). These days, new instances use the Superseries ID 68. This subtle change, unnoticed by the industry, may hint at an astonishing achievement: 8.4 million instances launched since EC2’s debut! (Instance IDs are even so 8.4M = 16.8M / 2.) (via mattb on delicious) « RSS never blocks you or goes down: why social networks need to be decentralized Papercraft Wall-E checks email, dances a jig when new message arrives » [...]

  18. tech: Four short links: 22 September 2009 | tech3bite says:

    September 23rd, 2009 at 7:13 am (#)

    [...] EC2 Usage Guessed From Sequential IDs — The Superseries ID changes so rarely that originally I had assumed it was some kind of checksum. This would have been odd as it limits the total available IDs to 224 = 16.8 million. Up to very recently, the Superseries ID for all resource types – instances, images, volumes, snapshots, etc. – was 69 (in the us-east-1 region (for eu-west-1 the Superseries ID is 74). These days, new instances use the Superseries ID 68. This subtle change, unnoticed by the industry, may hint at an astonishing achievement: 8.4 million instances launched since EC2’s debut! (Instance IDs are even so 8.4M = 16.8M / 2.) (via mattb on delicious) [...]

  19. Twitted by wespennest says:

    September 23rd, 2009 at 11:40 am (#)

    [...] This post was Twitted by wespennest [...]

  20. Amazon startet 50.000 neue Instanzen an einem Tag, 8.4 Millionen insgesamt | Server in den Wolken says:

    September 23rd, 2009 at 12:11 pm (#)

    [...] Anatomy of an Amazon EC2 Resource ID [...]

  21. Philipp says:

    September 23rd, 2009 at 8:44 pm (#)

    Thank you for this great article. I linked to it in my blog, but since it is in german only I thought it might be nice to let you know through a comment.

    I found your blog through this article and will definitly keep it in my feedreader. Keep up the good work.

    Greetings from Germany.
    Philipp

  22. egrep-cloud-cambrian-watch-2009-09-24 « すでにそこにある雲 says:

    September 24th, 2009 at 12:46 pm (#)

    [...] Anatomy of an Amazon EC2 Resource ID :: Jack of all Clouds – 一日で5万インスタンス生成ですか。すげ [...]

  23. Erik Giberti says:

    September 27th, 2009 at 3:50 am (#)

    Guy,

    Thanks for posting this. Although I’m not positive this is entirely accurate. I recently ran into an issue using Elastic Load Balancing that would make me thing otherwise.

    I was leveraging AutoScaling behind an ELB, but wasn’t letting AutoScaling put the machine in automatically (probably a mistake). As such – if a machine was terminated abruptly, either by an administrator or AutoScaling and the shutdown sequence failed to run the de-register code I would end up with instances in the ELB that were no longer assigned.

    Usually within a day or two a new instance will fire up with the same instance id. The ELB then saw this instance as active and so started sending requests to the instance that was no longer owned by me. I find it hard to believe the entire ID space and the entire series marker had cycled through in less than 48 hours. I think there may be more to this than you’ve uncovered thus far.

    Erik

  24. Amazon EC2 Shows Amazing Growth | CloudAve says:

    September 27th, 2009 at 10:28 am (#)

    [...] the state of the cloud, has done some research on the resource identifier used by Amazon EC2 and come up with some interesting stats. I thought I will add it here at Cloud Ave for the benefit of our readers.During one 24 hour period [...]

  25. Chase says:

    September 28th, 2009 at 3:48 pm (#)

    hey Guy,

    uve been quoted here:
    http://bigdatamatters.com/bigdatamatters/2009/09/private-cloud-eucalyptus.html

    btw, its a nice blog post

  26. vipin sahu says:

    September 30th, 2009 at 2:45 pm (#)

    nice analysis thanks for the info

  27. Miles says:

    September 30th, 2009 at 7:23 pm (#)

    One thing to keep in mind is that AWS also offers mapreduce platform that runs on EC2. This is where people submit processing jobs for processing. They can spin up 1000 machines for only a few minutes and then decommission them. Given the very burstable nature of this allocation 100% of your 50,000 units could be represented entirely in mapreduce jobs, or anything in between.

    You’ve done a nice job of laying this out, but if your goal was to find number of machine instances spun up for actual projects or by people then don’t think your findings have much meaning. A handful of researchers doing large scale processing for short periods of time could produce those numbers.

  28. William Vambenepe says:

    September 30th, 2009 at 8:46 pm (#)

    Reminds me of how during WW2 allied forces were gaining intelligence about German tank production by analyzing the serial numbers of parts of the captured equipment:
    http://www.jstor.org/pss/2280189

  29. Anatomy of an Amazon EC2 Resource ID › ec2base says:

    October 1st, 2009 at 8:05 am (#)

    [...] http://www.jackofallclouds.com/2009/09/anatomy-of-an-amazon-ec2-resource-id/ [...]

  30. links for 2009-10-01 « The Shining Path of Least Resistance says:

    October 1st, 2009 at 10:01 am (#)

    [...] Anatomy of an Amazon EC2 Resource ID :: Jack of all Clouds Digging into Amazon EC2 usage (tags: amazon cloud) [...]

  31. Amazon’s EC2 Generating 220M+ Annually | Cloudscaling says:

    October 1st, 2009 at 5:07 pm (#)

    [...] Ruv Cohen talked about how cloud computing is taking off and Guy Rosen made an attempt to derive EC2 usage information. What I have today is actual verified EC2 numbers plus some guesses [...]

  32. Has Cloud Computing Killed The Operating System? « Finbarr McCarthy says:

    October 3rd, 2009 at 3:39 pm (#)

    [...] Amazon offers an excellent alternative to in-house virtualisation with its EC2 offering and recent analysis by Guy Rosen estimates the number of Amazon EC2 instances launched daily in their us-east-1 region at 50,000 [...]

  33. Amazon EC2 is booming; keep an eye on cloud security « Computer and Network Security says:

    October 5th, 2009 at 5:16 pm (#)

    [...] Here’s a fascinating analysis of just how much business Amazon’s EC2 cloud services has. It’s worth a read. [...]

  34. Amazon Usage Estimates « RightScale Blog says:

    October 5th, 2009 at 7:36 pm (#)

    [...] 5, 2009 at 10:36 am · Filed under AWS, EC2, cloud computing Two weeks ago Guy Rosen posted a very interesting analysis of the EC2 instance IDs which reveals how many instances [...]

  35. Thorsten, CTo RightScale says:

    October 6th, 2009 at 5:51 am (#)

    Guy, very cool analysis. We took it a step further and went through our records. Turns out you’re underestimating the number of launches by almost a factor of 2x. So far there have been over 15 million instances launched in ec2-us-east1! See http://rightscale.wordpress.com/2009/10/05/amazon-usage-estimates/ for details.

  36. egrep-cloud-cambrian-watch-2009-10-06 « すでにそこにある雲 says:

    October 6th, 2009 at 11:46 am (#)

    [...] Guy Rosen さんのEC2 の分析にたいする、RightScale [...]

  37. Amazon Usage Estimates and Updates :: Jack of all Clouds :: Guy Rosen on Cloud Computing says:

    October 7th, 2009 at 3:01 pm (#)

    [...] recent Anatomy of an Amazon EC2 Resource ID post and the usage statistics it implied caused quite a stir in the cloud computing community. [...]

  38. No more servers et la progression du Cloud chez Amazon says:

    October 12th, 2009 at 11:00 pm (#)

    [...] http://www.jackofallclouds.com/2009/09/anatomy-of-an-amazon-ec2-resource-id/ [...]

  39. Amazon provisioning 8 petabytes of storage per day « Storage News says:

    October 17th, 2009 at 1:05 pm (#)

    [...] in Amazon’s cloud. His findings were surprising, at least to me: according to his stats, nearly 50.000 EC2 instances are started daily. But it all depends on the way you look at it; it’s less than [...]

  40. [#Cloud クラウドコンピューティング] Amazon EC2のシステム構造と売り上げについて予測している記事がここのところ飛び交っているが、そのソー… « Ippei Suzuki’s Blog says:

    October 19th, 2009 at 1:17 am (#)

    [...] Ruv Cohen talked about how cloud computing is taking off and Guy Rosen made an attempt to derive EC2 usage information. What I have today is actual verified EC2 numbers plus some guesses [...]

  41. Presentation: Measuring the Clouds :: Jack of all Clouds :: Guy Rosen on Cloud Computing says:

    October 21st, 2009 at 2:35 pm (#)

    [...] up on the cloud research I’ve been conducting and publishing here, yesterday I presented the topic at an IGT [...]

  42. Analysis of GoGrid Cloud Usage :: Jack of all Clouds :: Guy Rosen on Cloud Computing says:

    November 12th, 2009 at 5:32 pm (#)

    [...] previous posts, we’ve gone to great lengths to make educated guesses regarding Amazon EC2 usage. Amazon, however, are not alone in the cloud space. It makes sense that we do the same for other [...]

  43. Rackspace Cloud Usage Analysis :: Jack of all Clouds :: Guy Rosen on Cloud Computing says:

    December 10th, 2009 at 12:36 am (#)

    [...] seen Amazon EC2’s usage. We’ve also seen GoGrid’s usage. In this post, we’ll take a peek at how many [...]

  44. Twitted by EdGroenescheij says:

    December 15th, 2009 at 7:30 am (#)

    [...] This post was Twitted by EdGroenescheij [...]

  45. Comparing Amazon EC2 Regions :: Jack of all Clouds :: Guy Rosen on Cloud Computing says:

    December 16th, 2009 at 8:17 pm (#)

    [...] eu-west-1. I got curious to see how fast the new region was being adopted. Luckily, with the Anatomy of an Amazon EC2 Resource ID formula at hand, we can zone in on this data this quite [...]

  46. Cloud-Computing in Kiel says:

    February 3rd, 2010 at 1:10 pm (#)

    [...] neue Server wurden im September 2009 [1] von Kunden bei Amazon gestartet — pro Tag. Der Sprung in den Alltag, der der  Cluster- und [...]

  47. Einladung zum Gründungstreffen des Arbeitskreises Cloud-Computing « Cloud-Computing in Kiel says:

    February 3rd, 2010 at 1:14 pm (#)

    [...] neue Server wurden im September 2009 [1] von Kunden bei Amazon gestartet — pro Tag. Der Sprung in den Alltag, der der  Cluster- und [...]

  48. Revisiting EC2 Instance IDs :: Jack of all Clouds :: Guy Rosen on Cloud Computing says:

    February 4th, 2010 at 12:30 am (#)

    [...] in September, I published the Anatomy of an EC2 Resource ID where I pointed out some curious patterns in EC2’s ID scheme and proposed a method of [...]

  49. Eric Hammond says:

    February 18th, 2010 at 4:39 am (#)

    EC2 may have leaked some information behind the IDs in the numerical identifiers in a (buggy) error message I posted here:

    http://developer.amazonwebservices.com/connect/thread.jspa?threadID=42595

    For example, “volume 2753105″ and “instance 33917882″.

  50. How many people are using Amazon’s cloud? A whole lot! : says:

    May 19th, 2010 at 8:41 am (#)

    [...] nutshell, Golden points out that the accuracy of a recent analysis by Guy Rosen, which estimated the number of server instances provisioned on a daily basis by [...]

  51. боков блог » Blog Archive » Amazon Web Services – немного фактов says:

    August 31st, 2010 at 4:48 pm (#)

    [...] на “сладкое” – анатомия instance id и расчет количества ежедневно запущенных instance – [...]

  52. Alexey Bokov’s weblog » Blog Archive » Cloud computing links – August 2010 says:

    August 31st, 2010 at 4:50 pm (#)

    [...] Anatomy of an Amazon EC2 Resource ID and based on this anatomy EC2 usage estimates [...]

  53. State of the Cloud – September 2010 :: Jack of all Clouds :: Guy Rosen on Cloud Computing says:

    September 9th, 2010 at 9:35 pm (#)

    [...] been a year since the groundbreaking Anatomy of an EC2 Resource ID research, that shed light on the volume of usage Amazon’s cloud is seeing. Later this month [...]

  54. Amazon does not oversubscribe - The Troposphere says:

    October 7th, 2010 at 8:09 pm (#)

    [...] Rosen, who runs the Jack of all Clouds blog, estimates the use of AWS regularly. In September 2010, AWS was home to 3259 websites. In September-October 2009, Rosen came [...]

  55. Anatomy of an Amazon EC2 Resource ID | user's Blog! says:

    October 14th, 2010 at 2:40 pm (#)

    [...] by a discussion that happened yesterday in a CloudBurst context, I’m posting this link to a blog post I came across a few days ago. It’s from a blog I stumbled across called Jack [...]

  56. Recounting EC2 One Year Later :: Jack of all Clouds :: Guy Rosen on Cloud Computing says:

    December 29th, 2010 at 2:03 pm (#)

    [...] been over a year since my original Anatomy of an EC2 Resource ID post. In what became my little claim to fame in the industry, I uncovered the pattern behind those [...]

  57. עד כמה גדול הענן? | מעונן חלקית says:

    December 30th, 2010 at 6:53 pm (#)

    [...] רוזן, בבלוג Jack of all Clouds, מצא כבר בספטמבר 2009 דרך מאד מעניינת להעריך את מספר השרתים המופעלים בענן של אמזון. גיא [...]

  58. Are Amazon EC2 IDs globally unique across regions? | Coding Answers says:

    June 21st, 2011 at 9:09 pm (#)

    [...] have seen Is the Amazon EC2 instance id unique forever? and followed the link to http://www.jackofallclouds.com/2009/09/anatomy-of-an-amazon-ec2-resource-id/ which [...]

  59. Amazon data center size « Huan Liu's Blog says:

    March 13th, 2012 at 2:09 am (#)

    [...] for its size. There have been early guesstimates on how big Amazon cloud is, and there are even tricks to figure out how many virtual machines are started in EC2, but this is the first time anyone can accurately estimate the real size of Amazon [...]

  60. Amazon Cloud size and details « Tomi Engdahl’s ePanorama blog says:

    March 15th, 2012 at 11:07 pm (#)

    [...] is not the first analysis of Amazon’s scale. Take also look at analyses from Randy Bias and Guy Rosen. It clearly places the size of Amazon’s structure well above the hosting providers that have [...]

  61. Amazon Data Center: 450,000 Estimated EC2 Servers says:

    March 17th, 2012 at 5:09 am (#)

    [...] for its size. There have been early guesstimates on how big Amazon cloud is, and there are even tricks to figure out how many virtual machines are started in EC2, but this is the first time anyone can estimate the real size of Amazon [...]

  62. cloudpack Night #2 B) « すでにそこにある雲 says:

    March 23rd, 2012 at 5:53 pm (#)

    [...] 2009-09-21 : Anatomy of an Amazon EC2 Resource ID :: Jack of all Clouds :: Guy Rosen on Cloud Comput… [...]

About Guy Rosen
Guy Rosen is Co-Founder & CEO of Onavo by day, and a cloud computing blogger by night. This blog shares his cloud market research and commentary.

Find out more at the about page.
Alternatively, you can subscribe by email for the latest and greatest updates!

Recent Posts

  • Shameless Plug
  • The clouded world of naming cloud startups
  • State of the Cloud – January 2011
  • Recounting EC2 One Year Later
  • State of the Cloud – November 2010

Categories

  • Analysis
  • Commentary
  • General
  • State of the Cloud

Archives

  • February 2011
  • January 2011
  • December 2010
  • November 2010
  • October 2010
  • September 2010
  • August 2010
  • July 2010
  • June 2010
  • May 2010
  • April 2010
  • March 2010
  • February 2010
  • January 2010
  • December 2009
  • November 2009
  • October 2009
  • September 2009
  • August 2009
  • July 2009


© 2013 Guy Rosen
Powered by WordPress using the Gridline Lite theme by Graph Paper Press.