Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Compute Engine as an alternative to Amazon Web Services (EC2, ELB, etc...)

I am trying evaluate Google Compute Engine (GCE) for a cloud project in our company. We have some experience in working with Amazon Web Services but would like to know if GCE is a better alternative for our project. I have following questions. Our choice for the project will be based on the answers for the questions so please help me with these queries.

  1. Is there an equivalent of AWS Route53 and Elastic Load Balancer on Google cloud? If they are not available then how do we load balance GCE instances?
  2. Is there a concept like regions? (such as us-east-coast-1, us-west-coast-1, etc…). Helpful in making sure that the service is not affected during natural calamities.
  3. Is there an equivalent of Cloud Watch to help us auto scale compute engine instances based on load?
  4. Can we setup a private cloud on Google cloud platform?
  5. Can we get persistent public IP addresses for GCE instances?
  6. Are there any advantages (in terms of tighter integration OR pricing) when using Google services such as Google Analytics, YouTube, DoubleClick, etc?
like image 296
Narayanababu Avatar asked Aug 20 '13 14:08

Narayanababu


People also ask

What is Google's equivalent to EC2?

Google Compute Engine is the GCP equivalent of EC2. Google Compute Engine or GCE is a cloud computing service that provides virtual machines that run on Google Cloud infrastructure. It offers scale, performance, and value that allows users to easily launch large compute clusters on Google's infrastructure.

What is the difference in between Google's App Engine and Amazon's EC2?

Amazon Elastic Compute Cloud (Amazon EC2) is a web service that provides resizable compute capacity in the cloud. It is designed to make web-scale computing easier for developers. On the other hand, Google App Engine is detailed as "Build web applications on the same scalable systems that power Google applications".

What is Google Compute Engine used for?

Compute Engine is a customizable compute service that lets you create and run virtual machines on Google's infrastructure. You can create a Virtual Machine (VM) that fits your needs.

What is difference between GCP and AWS?

Google Cloud Platform provides IaaS, PaaS, and serverless computing environments. A comparatively new Google Cloud Platform has all the tools and services required by developers and professionals. Amazon Web Services(AWS): It provides on-demand cloud computing platforms and APIs.


1 Answers

Load Balancing

Google Cloud Platform's Compute Engine (GCE) recently added a Load Balancing feature. It's lower level than ELB (it only supports UDP / TCP, not HTTP(S)).

Regions

GCE has feature parity. AWS Regions correspond to GCE Regions, and AWS Availability Zones to GCE Zones

Autoscaling (CloudWatch)

Google Compute Engine does not have autoscaling, but Google App Engine does. Third party tools such as Scalr or RightScale are however compatible with Google Compute Engine

Disclaimer: I do work at Scalr.

Private Cloud

Did you mean dedicated instances? Those are not available in GCE.

If you meant VPC, then you can use GCE networks to achieve isolation. You'll also wish to disable ephemeral external IP addresses for the instances you want to isolate.

Persistent IPs

GCE has persistent IPs, they are called "Reserved Addresses"

Integration with other services

You will likely get better latency to Google services you use in your backend (I recall a couple presentations at Google I/O talking about Google App Engine + BigQuery).

For frontend services (Google Analytics), you'll likely see not benefit, since this depends on your users, not your servers.

like image 119
Thomas Orozco Avatar answered Oct 08 '22 19:10

Thomas Orozco