Search the practice set

126 questions, 454 terms and 400 topics in 20 areas.

28 results for “Storage Costs”

Terminology · 15
term

Block Storage

A virtual disk attached to one instance at a time, presented as raw blocks and formatted with a filesystem — the storage databases and stateful workloads run on.

Cloud Storage
term

Object Storage

Flat, HTTP-addressable storage for immutable blobs with rich metadata — effectively unlimited, cheap, and not a filesystem.

Cloud Architecture
term

Storage Tiering

Moving data between access tiers as it cools, so rarely-read data is not paying hot-storage prices.

Cost & FinOps
term

Bloom Filter

A compact probabilistic structure that answers "is this key definitely absent, or possibly present?" — no false negatives, tunable false positives.

Data Architecture
term

Data Lakehouse

A pattern that puts warehouse-style transactions, schema and governance on top of cheap open-format object storage.

Data Architecture
term

Database Index

A secondary structure that lets the engine find rows without scanning, trading write cost and storage for read speed.

Data Architecture
term

Dropbox's Move Off S3

Dropbox moved the majority of its file storage off Amazon S3 onto custom infrastructure, reporting savings that its S-1 filing put at roughly $75 million over two years.

Cost & FinOps
term

Durability vs Availability

Two different storage guarantees — whether data survives, and whether it can be reached right now — routinely conflated because both are quoted in nines.

Cloud Storage
term

Egress Path Analysis

Tracing where data physically moves in an architecture, because transfer charges follow paths that appear nowhere on the diagram.

Network & Egress Costs
term

Instance Family

A group of instance types sharing a resource profile — general purpose, compute optimised, memory optimised, storage optimised, accelerated — chosen by which resource the workload…

Compute Models
term

OLTP vs OLAP

Two workload shapes with opposite requirements — many small indexed transactions versus few large scans and aggregations — which is why they belong in different stores.

Data Warehousing
term

Open Table Format

A metadata layer over files in object storage that supplies ACID transactions, schema evolution and time travel — the thing that turns a data lake into a lakehouse.

Data Lakes & Lakehouses
term

Partial Index

An index built over only the rows matching a predicate, so it is far smaller and cheaper to maintain than a full index.

Indexing
term

Pod

The smallest deployable unit in Kubernetes — one or more containers that share a network namespace, storage volumes and a lifecycle, scheduled together on one node.

Kubernetes
term

Trade-off Analysis

Making the costs of an architectural choice explicit and comparable, rather than presenting a recommendation as if it were free.

Meta-Skills