Cloud Computing Flashcards

1
Q

What’s the difference between EC2 and ECS?

A

AWS ECS is a logical group (cluster) that contains EC2 instances.

EC2 is a remote virtual machine.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which google service is the equivalent of ECS?

A

Google Kubernetes Engine

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a AWS lambda function?

A

It is sort living service that is invoked lazily, during invocation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which is the equivalent service in google of AWS lambdas.

A

Cloud functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Pros of aws lambda functions

A
  • You are paying what you use
  • scale up easily
  • It encapsulates functionality in one place
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Cons of aws lambda functions

A
  • being lazy means that most of the times you get extra latency.
  • not good for expensive operations due to memory and cpu limits.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What VPC stands for

A

Virtual Private Cloud

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the equivalent of aws VPC in google services?

A

Google Virtual Private Cloud

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the equivalent of aws security groups in google cloud services?

A

Compute Engine firewall rules

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a security group?

A

It is basically a firewall that wraps a number of services and provides security at the protocol and port level.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is an S3 bucket?

A

An S3 bucket (simple storage service) is a public cloud storage available in AWS.

They are similar to file folders, store objects which consists of data and its descriptive metadata.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the equivalent of aws s3 in google cloud services.

A

Cloud storage nearline

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is Dynamo DB?

A

Is a fully managed proprietary NoSQL database service that supports key-value and document data structures

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the equivalent of dynamoDB in google cloud services.

A

Cloud bigtable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is artifactory

A

Is a JFrog product that serves as a repository manager.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is terraform?

A

It’s infrastructure as code.

It allows you to write a cobfiguration.

When the command plan is executed, terraform performs the necessary actions to achieve the desired state specified in the configuration.

17
Q

What is EC2?

A

It’s a Virtual Machine.

Amazon elastic compute cloud is a web service that provides secure, resizable compute capacity in the cloud.

18
Q

What is the equivalent of aws EC2 in google cloud services?

A

Compute Engine

19
Q

What is docker?

A

A program that performs operating system level virtualisation aka containerisation.

20
Q

What is a docker image?

A

It’s a file used to execute code in a docker container.

It’s essentially instructions for a complete and executable version of an application.

When a docker user runs an image it becomes one or multiple instances of that container.