Google Cloud Flashcards

1
Q

Definition: Resource Management Tool

A

Helps track / rename / update / create / delete projects

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

Identity and Access Management

A

Who has access to change folders / policies within the organisation node

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

Compute Engine

A

Google cloud product that offers VMs (Virtual Machines) as a service

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

Service Account

A

Permissions given to the VMs (Virtual Machines) themselves rather than specific people

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

Ways to interact with Google Cloud

A
  1. Google Cloud console (GUI)
  2. Cloud SDK and Cloud Shell
  3. APIs
  4. Cloud Mobile App
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Virtual Private Cloud (VPC)

A

A secure, individual, private cloud-computing model hosted within a public cloud.
The firewall (protection) and the connections routing are already available with this option.
Tagging options are available to eg set a firewall rule for all instances called “web”.

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

Cloud Marketplace

A

Instance from where the Compute Engines (VMs) can be easily started as well as the third-party VMs

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

Preemtible & Spot VMs

A

Used for the work where the human supervision is not needed such as batch analysis jobs in a large dataset.
Unlike regular Compute Engines, these processes cannot be stopped so these resources cannot be re-allocated to a different task. Compute Engines also allow you to choose your machine type parameters.

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

Cloud Load Balancing

A

Helps manage traffic depending on the demand spikes

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

Cloud Domain Name Server (DNS) / Google’s free 8. 8. 8. 8 service

A

Translates the public host name into IP addresses

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

Cloud CDN (Contact delivery network)

A

So that the customers experience lower latencies, these are the services located close to the customers. Helps store content close to the end-users

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

Kubernetes Engine

A

Allows to have cloud services from different providers, diversify and not be stuck to Google Cloud only.

A product that helps manage and scale containerised applications.

There are pods that include max 1 container.
Groups of pods are a cluster.

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

Firewall Rules (example)

A

When you have several VMs connected to your VPC (Virtual Private Cloud) network, you cannot simply transmit info from one VM to another.
Firewall rules must be in place to allow for such interactions.
allow-icmp rule allows to send to the external IP
allow-custom rule allows to send to the internal IP
allow-ssh allows to start a Secure Shell instance on the web

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

VPC

A

Google Cloud Virtual Private Cloud (VPC) provides networking functionality to Compute Engine virtual machine (VM) instances, Kubernetes Engine containers, and App Engine flexible environment. In other words, without a VPC network you cannot create VM instances, containers, or App Engine applications. Therefore, each Google Cloud project has a default network to get you started.

You can think of a VPC network as similar to a physical network, except that it is virtualized within Google Cloud. A VPC network is a global resource that consists of a list of regional virtual subnetworks (subnets) in data centers, all connected by a global wide area network (WAN). VPC networks are logically isolated from each other in Google Cloud.

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

5 storage products

A
  1. Cloud Storage
  2. Cloud SQL
  3. Cloud Spanner
  4. Firestore
  5. Cloud Bigtable
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Cloud Storage

A

Object storage rather than file storage or block storage.
Object storage contains packaged binary info of the data, as well as metadata.
The data is saved in the form of a URL.
Video, Pics, Audio
The data is stored into “buckets”, each piece with a unique name and a global identifier, i.e. location.

Has the following storage classes: Standard storage; Nearline Storage, Coldline Storage and Archive Storage.

17
Q

Immutable object

A

Object itself cannot be modified but its copy is created which is the one that is being modified.

18
Q

Cloud SQL

A

Helps with mundane tasks:
- Applying patches and updates
- Managing backups
- Configuring replications

Used with applications that require large database management

19
Q

Cloud Spanner

A

Scales horizontally
Can use SQL

Used with applications with high number of inputs/outputs per second, where JOINs and INDEXing is used

20
Q

Firestore

A

Scales horizontally
NoSQL cloud database
Offline availability, good when there is a need to read, write, delete something across the mobile devices.

Incoming data –> documents –> collections

21
Q

Cloud Bigtable

A

NoSQL, big data database service.

Powers gmail, maps etc
Performs well in low latency situations
Suitable for large data.

22
Q

Containers

A

Allows scalability like in PaaS yet flexibility as in IaaS.

23
Q

Anthos

A

Google’s multi-cloud / hybrid services management.

24
Q

Developing applications in the cloud

A

App Engine - platform for developing and hosting web applications at scale

25
Q

App Engine environments

A
  • Standard: applications run in a sandbox environment which is secure and constantly updated
  • Flexible: type of container can be specified; custom configurations and libraries, custom runtime
26
Q

Supporting APIs with: Cloud endpoints & Apigee API Management & API Gateway // API

A

Management tools for the APIs.

API: API basically represents an interface that the users of that programme “connect to”. The interface stays the same but the underlying configurations can change. The users of the Programme do not need to keep re-connecting because of the changes made to the programme as long as the interface stays the same.

  • Apigee API: good for managing several APIs and seeing their costs
  • API Gateway: helps to have REST Proxy so that all the APIs of a single service provider can run, regardless of their underlying architecture (how the API was made, using one language or another). It basically helps in unifying the APIs by one service provider.
27
Q

Cloud run

A

Helps build apps in cloud. It’s serverless and fast.

28
Q

Cloud Source Repositories

A

Acts as a git repository.
Allows google diagnostics.

29
Q

Cloud Functions

A

Allows to create functions to do the required manipulations, eg changing a format of a picture, resizing it.

30
Q

Terraform

A

Deploys the infrastructure.
It allows to run the VPC and its VMs using the Cloud SSH. I can create files using VS Code (in the “Open Editor” field), specify needed variables and simply create the VM instances as well as the firewall rules without doing it manually each time through the GUI.

31
Q

Cloud Trace

A

Gathers info about latency, response time etc to measure the performance of the application

32
Q

Cloud Profiler

A

Helps understand which apps consume most resources by showing CPU usage stats.