~openstack-gd/nova/lp785816-joinedload

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
..
      Copyright 2010-2011 United States Government as represented by the
      Administrator of the National Aeronautics and Space Administration. 
      All Rights Reserved.

      Licensed under the Apache License, Version 2.0 (the "License"); you may
      not use this file except in compliance with the License. You may obtain
      a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

      Unless required by applicable law or agreed to in writing, software
      distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
      WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
      License for the specific language governing permissions and limitations
      under the License.

Cloud Computing 101
===================

Originally the term cloud came from a diagram that contained a cloud-like shape to contain the 
services that afforded computing power that was harnessed to get work done. Much like the electrical 
power we receive each day, cloud computing is a model for enabling access to a shared collection of
computing resources - networks for transfer, servers for storage, and applications or services for 
completing work. 

Why Cloud?
----------
Like humans supposedly only use 10% of their brain power, many of the computers in place in data 
centers today are underutilized in computing power and networking bandwidth. People also may need a large 
amount of computing capacity to complete a computation for example, but don't need the computing power
once the computation is done. You want cloud computing when you want a service that's available 
on-demand with the flexibility to bring it up or down through automation or with little intervention.

Attributes of a Cloud
---------------------
On-demand self-service - A cloud should enable self-service, so that users can provision servers and networks with little 
human intervention. 

Network access - Any computing capabilities are available over the network and you can use many different
devices through standardized mechanisms. 

Resource pooling - Clouds can serve multiple consumers according to demand. 

Elasticity - Provisioning is rapid and scales out or in based on need. 

Metered or measured service - Just like utilities that are paid for by the hour, clouds should optimize
resource use and control it for the level of service or type of servers such as storage or processing.

Types of Cloud Services
-----------------------

Cloud computing offers different service models depending on the capabilities a consumer may require. 
The US-based National Institute of Standards and Technology offers definitions for cloud computing
and the service models that are emerging. 

These definitions are summarized from the `U.S. National Institute of Standards and Technology (NIST) cloud computing research group <http://csrc.nist.gov/groups/SNS/cloud-computing/>`_.

SaaS - Software as a Service
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Provides the consumer the ability to use the software in a cloud environment, such as web-based email for example. 

PaaS - Platform as a Service
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Provides the consumer the ability to deploy applications through a programming language or tools supported
by the cloud platform provider. An example of platform as a service is an Eclipse/Java programming
platform provided with no downloads required.

IaaS - Infrastructure as a Service
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Provides infrastructure such as computer instances, network connections, and storage so that people 
can run any software or operating system.

Types of Cloud Deployments
--------------------------

When you hear terms such as public cloud or private cloud, these refer to the deployment model for the cloud. A private cloud operates for a single organization, but can be managed on-premise or off-premise. A public cloud has an infrastructure that is available to the general public or a large industry group and is likely owned by a cloud services company. 

The NIST also defines community cloud as shared by several organizations supporting a specific community with shared concerns. 

A hybrid cloud can be a deployment model, as a composition of both public and private clouds, or a hybrid model for cloud computing may involve both virtual and physical servers.

Work in the Clouds
------------------

What have people done with cloud computing? Cloud computing can help with large-scale computing needs or can lead consolidation efforts by virtualizing servers to make more use of existing hardware (and possibly release old hardware from service.) People also use cloud computing for collaboration because of the high availability through networked computers. Productivity suites for word processing, number crunching, and email communications, and more are also available through cloud computing. Cloud computing also avails additional storage to the cloud user, avoiding the need for additional hard drives on your desktop and enabling access to large data storage capacity online in the cloud.