Reputation: 14389
I am bit confused with the cloud concept and especially when to use it to benefit from it.
I am working on a Web Based Project and have the following questions:
just Setting up the Systems DB in the Internet makes the structure
cloud?
What are the benefits of making my web application cloud?
The users accessing the the DB are limited (20-30) and the data transacted on daily basis are of medium amount (100-200MB).
Upvotes: 0
Views: 160
Reputation: 8444
Let me explain cloud computing segments in details to understand Cloud Computing.
Cloud computing: Cloud computing is the practice of using a network of remote servers hosted on the Internet to store, manage, and process data, rather than a local server or a personal computer.
Cloud Computing Segment:
IaaS(Infrastructure as a Service) - Infrastructure as a Service is a provision model of cloud computing in which an organization outsources the equipment used to support operations, including storage, hardware, servers and networking components. The service provider owns the equipment and is responsible for housing, running and maintaining it. The client typically pays on a per-use basis. Ex- Amazon Web Services, BlueLock, Cloudscaling and Datapipe
PaaS(Platform as a Service) - Platform as a Service is one of the GROWING sector of cloud computing. PaaS basically help developer to speed the development of app, saving money and most important innovating their applications and business instead of setting up configurations and managing things like servers and databases. In one line I can say Platform as a service (PaaS) automates the configuration, deployment and ongoing management of applications in the cloud. Ex: Heroku, EngineYard, App42 PaaS and OpenShift
SaaS(Software as a Service) - Software as a Service, SaaS is a software delivery method that provides access to software and its functions remotely as a Web-based service. Ex: Abiquo's and Akamai
BaaS(Backed as a Service) - Backend as a service (BaaS), also known as "mobile backend as a service" (MBaaS),is a model for providing web and mobile app developers with a way to link their applications to backend cloud storage while also providing features such as user management, push notifications, and integration with social networking services. Exp: Kinvey, StackMob, App42 API and Parse
I think you are looking Backed Service provides for you application. You can go with BaaS providers.
Upvotes: 2
Reputation: 488
Some of the benefits are:
However, you will need to choose between an IaaS and a PaaS.
IaaS: You get the Infrastructure as a Service where you have to take care of the installation/configuration/updating process of the services you want to use. Benefit: Very customizable.
PaaS: You will get a MySQL database, a Tomcat webserver, ... as a Service. So with one click of your mouse you can start using a MySQL database, or deploy your Tomcat application.
For example, this is way you can use a MySQL on a PaaS.
Upvotes: 2