Cv0-04 section 2

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/27

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

28 Terms

1
New cards

Virtualization

Using software to pretend one physical computer is actually multiple separate “virtual” computers. Like having imaginary friends who can each use the same toy box without mixing toys.

2
New cards

Virtual Machine (VM)

A complete computer simulated in software. It has its own operating system and apps, separate from the physical machine and other VMs

3
New cards

Container

A way to package an application and everything it needs (code, tools, libraries) so it can run reliably anywhere. Containers share the host computer OS, making them smaller and faster than VMs.

4
New cards

Hypervisor

The software that creates and manage VMs

5
New cards

Type 1 hypervisor

Runs directly on the computer hardware (like bare metal). More efficient, used in data centers.

6
New cards

Type 2 hypervisor

Runs as an application on top of an existing OS (like running VirtualBox on your windows laptop). Easier for personal use

7
New cards

Virtual networking

Creating networks using software instead of physical cables and switches. Allows creating virtual switches, routers, and isolated network segmented (like VLANs or VPCs) in the cloud.

8
New cards

VM Templates

A pre-made recipe for creating VMs with specific settings (OS, software, resources). Faster and more consistent than building each VM manually.

9
New cards

Auto-scaling

Automatically adding or removing computer resources (like VMs or containers) based on demand. Like automatically adding more cashiers when the store gets busy.

10
New cards

Provisioning

The process of setting up and allocating cloud resources (like VMs, storage, networks). Often automated using tools or code.

11
New cards

vCPU (virtual CPU)

The amount of processing power assigned to a VM from the physical computer’s CPU(s).

12
New cards

vGPU (Virtual GPU)

Assigning graphics processing power to VMs for tasks like 3D rendering or machine learning

13
New cards

Oversubscription

Assigning more total resources (like CPU or memory) to all the VMs on a host than the host physically has. Works okay if not all VMs need their maximum resources at the same time, but can cause slowness if they do.

14
New cards

Instances

A term often used for a single VM running in the cloud, usually with a specific combination of CPU, memory, storage, and networking.

15
New cards

Storage I/O (input/output)

Reading data from or writing data to storage

16
New cards

Performance baselines

Historical metrics to detect anomalies

17
New cards

IOPS (I/O Operations per second)

How many read/write actions a storage device can do per second. A key measure of storage speed, especially for databases

18
New cards

Right-sizing resources

Matching vCPU/memory/storage to actual workload

19
New cards

CPU ready time

How long a VM waits for CPU scheduling

20
New cards

Throughput

How much data can be transferred per second (like MB/sec). Important for large or streaming

21
New cards

Latency

The delay in data transfer; how long it takes for data to get from A to B. Lower is better. Affected by distance and network congestion.

22
New cards

Bucket

A common term (especially in object storage like AWS S3) for a container that holds your data. Buckets usually have globally unique names

23
New cards

Full clone

A full clone is a completely separate copy of a VM that shares no system resources with the parent once it's running.

24
New cards

Linked clone

A linked clone, on the other hand, continues to share virtual disks with the parent after it's created. Since it runs independently, a full clone generally has faster performance than a linked one.

25
New cards

Snapshots vs backup

Point-in-time image vs full data copy

26
New cards

vApps

Grouping multiple VMs with shared resource controls

27
New cards

VM Affinity rules

Keep certain VMs together or apart on hosts

28
New cards

Nested virtualization

Running a hypervisor inside of a VM