Question

If you design a distributed application for easy scale-out, or you just want to make use of any of the new “cloud computing” offerings by Amazon, Google or Microsoft, there are some typical concepts or components you usually end up using:

  • distributed blob storage (aka S3)
  • asynchronous, durable message queues (aka SQS)
  • non-Relational-/non-transactional databases (like SimpleDB, Google BigTable, Azure SQL Services)
  • distributed background worker pool
  • load-balanced, edge-service processes handling user requests (often virtualized)
  • distributed caches (like memcached)
  • CDN (content delivery network like Akamai)

Now when it comes to design and sketch an architecture that makes use of such patterns, are there any commonly used symbols I could use? Or even a download with some cool Visio stencils? :)

It doesn’t have to be a formal system like UML but I think it would be great if there were symbols that everyone knows and understands, like we have commonly used shapes for databases or a documents, for example. I think it would be important to not mix it up with traditional concepts like a normal file system (local or network server/SAN), or a relational database.

Simply speaking, I want to be able to draw some conclusions about an application’s scalability or data consistency issues by just looking at the system architecture overview diagram.

Update: Thank you very much for your answers. I like the idea of putting a small "cloud symbol" on the traditional symbols. However I leave this thread open just in case someone will find specific symbols (maybe in a book or so) - or uploaded some pimped up Visio stencils ;)

Was it helpful?

Solution

Here are two sets of symbols that map nicely to concepts in cloud platforms.

For Windows Azure: http://davidpallmann.blogspot.com/2011/07/windows-azure-design-patterns-part-1.html (download here)

EDIT Feb 2014 ==> Here's a more complete set released recently by Microsoft: http://www.microsoft.com/en-us/download/details.aspx?id=41937 This is now the best option to use for Windows Azure.

Amazon Web Services: http://aws.typepad.com/aws/2011/12/introducing-aws-simple-icons-for-your-architecture-diagrams.html

And @markus was obviously well ahead of the curve since he posted this question well before these became available.

OTHER TIPS

I do not know any of distinctive symbols but if you need some - I'd go for the traditional ones and add a small cloud symbol to each of them. So everyone knows the traditional meaning - and on an abstract layer it does not matter if it is a cloud or not - and the cloud symbol adds the information that it runs in a cloud-environment.

But explain the symbols if you want to present that to a customer.

would be interested to see a visio template. From a very high level perspective, it will do to put a clould over a traditional database, however it is not sufficient to express the full import of a cloud components, specially when it is necessary to include them in a diagram -- for example asynch message buses cheers - kalyan

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top