Could anybody explain in plain words how Cloud computing works? I have read the Wikipedia article, but still not sure that I understand how cloud actually works.
相关问题
- What are the advantages ManageIQ has over OpenStac
- How can my C# program behave differently depending
- Flask app cannot open server to Google Cloud Compu
- Connecting CAD model (Solidworks, AutoCAD or CATIA
- What is the purpose of Google Cloud Messaging
相关文章
- What does “exposition only” mean? Why use it?
- “Adapter” or “adaptor”?
- What is {{$guid}} used for in Postman?
- Developing a Multitenant SaaS
- Rails/Capistrano tool to deploy static assets to R
- Android google cloud messaging sample not working
- What is a bit field in layman's terms?
- Best practice for Deployment of Web site into a cl
i suggest you to read this paper
Above the Clouds: A Berkeley View of Cloud Computing, armbust at all
There will be no doubt on your mind.And in research area this paper is referred as introduction to cloud computing
First, to get this out of the way: Cloud Computing is a marketing buzzword and ill-defined one (at least at the moment).
I would recommend dissecting this overarching buzzword and in market segments, namely:
Coming back to your points:
Aside from the latest marketing term?
Basically all the resources your program needs are held "somewhere" on the internet. You interact with them via a defined service contract; SOAP, REST, POX or whatever and what happens after that is up to the service provider. You don't care about how your information is stored or how the service is provided, just that it is.
If, for example, you wanted to store files, you may choose to use Amazon's S3 cloud system. You connect to the service and upload your files; you don't know or care where the files are stored, only the location of the entry point to that service.
If you have an application then it may also be ran in the cloud, assuming it's suitable. Live Mesh for example is a virtual machine which you can code against and run your software both locally and within the cloud, so your user simply goes to a URI and finds your program, you don't care where it is beyond it being available somewhere on the cloud.