What is Cloud computing? [closed]

2019-01-08 04:48发布

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.

15条回答
干净又极端
2楼-- · 2019-01-08 05:41

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

查看更多
【Aperson】
3楼-- · 2019-01-08 05:42

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:

  • IaaS: Infrastructure as a Service (e.g. Amazon EC2)
  • Paas: Platform as a Service (e.g. Google AppEngine)
  • DaaS: Database as a Service (e.g. Amazon RDS)
  • SaaS: Software as a Service (e.g. Salesforce)

Coming back to your points:

  1. If you expose a Service through a Web Interface, you could classify this in the Cloud Computing bin
  2. Traditional Web Sites per-se would not fall in the CC category (see above segments)
  3. I do not know what a "Cloud Application" is: are you trying to define a new term ? ;-)
查看更多
够拽才男人
4楼-- · 2019-01-08 05:43

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.

查看更多
登录 后发表回答