Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"cloud architecture" concepts in a system architecture diagrams

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 ;)

like image 589
realMarkusSchmidt Avatar asked Jan 30 '09 12:01

realMarkusSchmidt


People also ask

What is system architecture diagram?

What is a System Architecture Diagram? The system architecture diagram is an abstract depiction of the system's component architecture. It provides a succinct description of the system's component architecture in order to assist in component-component relationships and system functioning.


2 Answers

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.

like image 170
codingoutloud Avatar answered Sep 20 '22 23:09

codingoutloud


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.

like image 34
Gambrinus Avatar answered Sep 18 '22 23:09

Gambrinus