下面这些术语是什么意思?

SaaS PaaS IaaS吗?

现在有各种各样的云服务,比如亚马逊的EC2和AWS、Apache Hadoop、微软Azure和许多其他云服务。它们分别属于哪一类,为什么?


当前回答

对于傻瓜:

IAAS(基础设施即服务):

基础层 处理虚拟机,存储(硬盘),服务器,网络,负载均衡器等

PAAS(平台即服务):

IAAS之上的一层 运行时(如java运行时),数据库(如mySql, Oracle), Web服务器(tomcat等)

软件即服务(SAAS):

PAAS上的一个层 应用程序,如电子邮件(Gmail,雅虎邮件等),社交网站(Facebook等)

为了快速关联,考虑以下谷歌的产品:

IAAS: 谷歌计算引擎(可以开发在高性能谷歌计算基础设施上运行的程序)

PAAS: 谷歌应用程序引擎(一个可以开发应用程序,让他们在谷歌应用程序引擎上执行,它负责执行)

SAAS: Gmail,谷歌+等(可以使用电子邮件服务,并扩展基于电子邮件/谷歌+的应用程序,以形成更新的应用程序)

受欢迎程度

公司明智的知名度

云计算是由

亚马逊网络服务(AWS) 谷歌计算引擎,谷歌应用引擎 微软Azure 有许多中小型云运营商,包括IBM、甲骨文等。

这些服务的受欢迎程度主要归功于公司的声誉以及这些公司在云空间方面的投资。

服务类型明智的知名度

PAAS (Platform as a Service) is more popular among developers as they can put all their concentration on developing their apps and leave the rest of management and execution to the service provider. Many service providers also offer the flexibility to increase/decrease the CPU power depending upon the traffic loads giving developers cost effective and easy & effortless management. SAAS (Software as a service) is more popular among with consumers, who bother about using the application such as email, social networking etc IAAS (Infrastructure as a service) is more popular among users into research and high computing areas.

其他回答

SaaS PaaS Iaas
Software-as-a-Service Platform-as-a-Service Infrastructure-as-a-Service
Ready to use infrastructure and software application that are centrally hosted and licensed on a subscription basis. Ready to use environment. where customers build, test, run, and update apps quickly and inexpensively. Provides on-demand access to physical computing resources, such as servers, storage, networking, and data center space without need to manage or operate.
Apps can be accessed over the internet on any device with a browser. Cloud provider manages the entire platform. Users can provision, test, and scale resources quickly.
Easy to add additional users and storage. Additional compute, storage, and networking capacity can be purchased quickly and used immediately. NA
Use Cases: Most personal or employee productivity applications (email, document management, online collaboration tools) Use Cases: Migration of existing applications to the cloud, a hybrid cloud strategy Use Cases: Backup/recovery of on-premises workloads, dev and test environments, customer facing websites, data storage and analytics

IaaS、PaaS和SaaS是云计算服务模式。

IaaS (Infrastructure as a Service), as the name suggests, provides you the computing infrastructure, physical or (quite often) virtual machines and other resources like virtual-machine disk image library, block and file-based storage, firewalls, load balancers, IP addresses, virtual local area networks etc. Examples: Amazon EC2, Windows Azure, Rackspace, Google Compute Engine. PaaS (Platform as a Service), as the name suggests, provides you computing platforms which typically includes operating system, programming language execution environment, database, web server etc. Examples: AWS Elastic Beanstalk, Windows Azure, Heroku, Force.com, Google App Engine, Apache Stratos. While in SaaS (Software as a Service) model you are provided with access to application software often referred to as "on-demand software". You don't have to worry about the installation, setup and running of the application. Service provider will do that for you. You just have to pay and use it through some client. Examples: Google Apps, Microsoft Office 365.

关于你的问题还有几点:

AWS(亚马逊网络服务)是一个完整的套件,包含了一大堆有用的网络服务。目前最流行的是EC2和S3,属于IaaS服务模式。 虽然Hadoop是基于谷歌之前的工作(GFS和MapReduce),但它不是来自谷歌。它是一个Apache项目。你可以在这里找到更多。它只是一个分布式计算平台,不属于任何这些服务模型,恕我直言。 微软的Windows Azure也是IaaS的一个例子。

就这些服务的受欢迎程度而言,它们都很受欢迎。关键在于哪一种更符合你的要求。例如,如果您想要在一个Hadoop集群上运行MapReduce作业,您会发现EC2非常适合,即IaaS。另一方面,如果你有一些用某种语言编写的应用程序,你想在云上部署它,你会选择像Heroku这样的应用程序,它是PaaS的一个例子。

云服务模型主要分为三类:

软件即服务(SaaS) 平台即服务(PaaS) 基础设施即服务(IaaS)

软件即服务(SaaS)

SaaS是一种为最终客户集中托管和管理的软件。它通常基于多租户架构(应用程序的单个版本用于所有客户),并且通常通过每月或每年的订阅获得许可。

例子 Office 365、Dropbox、Dynamics CRM Online都是SaaS软件的完美例子,订阅者每月或每年支付订阅费,就可以获得Exchange即服务(在线和/或桌面Outlook)或Storage即服务(OneDrive和Dropbox)。

平台即服务(PaaS)

使用PaaS,您可以将应用程序部署到云服务供应商提供的应用程序托管环境(专为构建、测试和部署软件应用程序而设计)中。开发人员有多种方式来部署他们的应用程序,而不需要知道任何支持它的后台发生了什么。

例子 Azure应用程序服务和Azure云服务(Web和工作人员角色)中的Web应用程序功能是PaaS的一个例子。

基础设施即服务(IaaS)

IaaS云供应商运行和管理运行虚拟化软件的服务器场,使您能够创建运行在供应商基础设施上的虚拟机(运行Windows或Linux),并在其上安装您想要的任何东西。开发人员不能控制硬件或虚拟化软件,但他们可以控制几乎所有其他的东西。事实上,与PaaS不同的是,您完全要对它负责。

参考文献

书:云架构:云计算服务模型(SaaS、PaaS和IaaS)的设计决策

正如所有人都很好地解释了云计算模型。所以我想要描绘出这三种模式IaaS, PaaS, SaaS w.r.t. AWS服务和它们的消费者。

因为这个问题有很多更好的定义。这里我想再举几个例子:

IaaS

AWS EC2 Rackspace 谷歌计算引擎(GCE) 数字海洋 Magento 1企业版 甲骨文云 Vultr

PaaS

AWS弹性豆茎 Heroku Windows Azure Force.com OpenShift Apache Stratos Magento商业云

SaaS

谷歌应用程序 Salesforce Dropbox MailChimp的 ZenDesk DocuSign 松弛 Hubspot的 思科 网讯 同意 进行交流