Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Grid computing is where more than one computer coordinates to solve a problem together. Often used for problems involving a lot of number crunching, which can be easily parallelisable.</p> <p>Cloud computing is where an application doesn't access resources it requires directly, rather it accesses them through something like a <em>service</em>. So instead of talking to a specific hard drive for storage, and a specific CPU for computation, etc. it talks to some service that provides these resources. The service then maps any requests for resources to its physical resources, in order to provide for the application. Usually the service has access to a large amount of physical resources, and can dynamically allocate them as they are needed. </p> <p>In this way, if an application requires only a small amount of some resource, say computation, then the service only allocates a small amount, say on a single physical CPU (that may be shared with some other application using the service). If the application requires a large amount of some resource, then the service allocates that large amount, say a <em>grid</em> of CPUs. The application is <em>relatively</em> oblivious to this, and all the complex handling and coordination is performed by the service, not the application. In this way the application can <em>scale</em> well. </p> <p>For example a web site written "on the cloud" may share a server with many other web sites while it has a low amount of traffic, but may be moved to its own dedicated server, or grid of servers, if it ever has massive amounts of traffic. This is all handled by the cloud service, so the application shouldn't have to be modified drastically to cope.</p> <p>A <em>cloud</em> would usually use a grid. A grid is not necessarily a cloud or part of a cloud.</p> <p>Wikipedia articles: <a href="http://en.wikipedia.org/wiki/Grid_computing" rel="noreferrer">Grid computing</a>, <a href="http://en.wikipedia.org/wiki/Cloud_computing" rel="noreferrer">Cloud computing</a>.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload