Category: Data Engineering

Glossary – 100 “Data Engineering” Terms

Below is a glossary that includes 100 common “Data Engineering” terms and phrases in alphabetical order. Enjoy!

TermDefinition & Example
Access ControlManaging who can access data. Example: Role-based permissions.
At-Least-Once ProcessingData may be processed more than once. Example: Duplicate-safe pipelines.
At-Most-Once ProcessingData processed zero or one time. Example: No retries on failure.
BackfillProcessing historical data. Example: Reloading last year’s data.
Batch ProcessingProcessing data in scheduled chunks. Example: Daily sales aggregation.
Blue-Green DeploymentDeployment strategy minimizing downtime. Example: Switching pipeline versions.
Canary ReleaseGradual rollout to detect issues. Example: New pipeline tested on 5% of data.
Change Data Capture (CDC)Capturing database changes. Example: Streaming updates from OLTP DB.
CheckpointingSaving progress during processing. Example: Spark streaming checkpoints.
Cloud StorageScalable remote data storage. Example: Azure Data Lake Storage.
Cold StorageLow-cost storage for infrequent access. Example: Archived logs.
Columnar StorageData stored by column instead of row. Example: Parquet files.
CompressionReducing data size. Example: Gzip-compressed files.
Compute EngineSystem performing data processing. Example: Spark cluster.
Consumption LayerData prepared for analytics. Example: Gold layer.
Cost OptimizationReducing infrastructure costs. Example: Query optimization.
Curated LayerCleaned and transformed data. Example: Silver layer.
DAG (Directed Acyclic Graph)Workflow structure with dependencies. Example: Airflow pipeline.
Data CatalogSearchable inventory of data assets. Example: Azure Purview.
Data ContractAgreement defining data structure and expectations. Example: Producer guarantees column names and types.
Data EngineeringThe practice of designing, building, and maintaining data systems. Example: Creating pipelines that feed analytics dashboards.
Data GovernancePolicies for data management and usage. Example: Access control rules.
Data IngestionCollecting data from source systems. Example: Ingesting API data hourly.
Data LakeCentralized storage for raw data. Example: S3-based data lake.
Data LatencyTime delay in data availability. Example: 5-minute pipeline delay.
Data LineageTracking data flow from source to output. Example: Source-to-dashboard trace.
Data MartSubset of warehouse for specific use. Example: Finance data mart.
Data MaskingObscuring sensitive data. Example: Masked credit card numbers.
Data MeshDomain-oriented decentralized data ownership. Example: Teams own their data products.
Data ModelingDesigning data structures for usage. Example: Star schema design.
Data ObservabilityMonitoring data health and pipelines. Example: Freshness alerts.
Data Partition PruningSkipping irrelevant partitions. Example: Querying one date only.
Data PipelineAn automated process that moves and transforms data. Example: Nightly ETL job from CRM to warehouse.
Data PlatformIntegrated set of data tools. Example: End-to-end analytics stack.
Data ProductA dataset treated as a product. Example: Curated customer table.
Data ProfilingAnalyzing data characteristics. Example: Value distributions.
Data QualityAccuracy, completeness, and reliability of data. Example: No duplicate records.
Data ReplayReprocessing historical events. Example: Rebuilding aggregates from logs.
Data RetentionRules for data lifespan. Example: Delete logs after 1 year.
Data SecurityProtecting data from unauthorized access. Example: Encryption at rest.
Data SerializationConverting data for storage or transport. Example: Avro encoding.
Data SinkThe destination where data is stored. Example: Data warehouse.
Data SourceThe origin of data. Example: ERP system, SaaS application.
Data ValidationEnsuring data meets expectations. Example: Null checks.
Data VersioningTracking dataset changes. Example: Snapshot tables.
Data WarehouseOptimized storage for analytics queries. Example: Azure Synapse Analytics.
Dead Letter Queue (DLQ)Storage for failed records. Example: Invalid messages routed for review.
Dimension TableTable storing descriptive attributes. Example: Customer details.
ELTExtract, Load, Transform approach. Example: Transforming data inside Snowflake.
ETLExtract, Transform, Load process. Example: Cleaning data before loading into a database.
Event TimeTimestamp when event occurred. Example: User click time.
Event-Driven ArchitectureSystems reacting to events in real time. Example: Trigger pipeline on file arrival.
Exactly-Once ProcessingEnsuring data is processed only once. Example: Preventing duplicate events.
Fact TableTable storing quantitative measures. Example: Order transactions.
Fault ToleranceSystem resilience to failures. Example: Node failure recovery.
File FormatHow data is stored on disk. Example: Parquet, CSV.
Foreign KeyField linking tables together. Example: CustomerID in orders table.
Full LoadReloading all data. Example: Initial table population.
High AvailabilitySystem uptime and reliability. Example: Multi-zone deployment.
Hot StorageHigh-performance storage for frequent access. Example: Real-time tables.
IdempotencyAbility to rerun pipelines safely. Example: Reprocessing without duplicates.
Incremental LoadLoading only new or changed data. Example: CDC-based ingestion.
IndexingCreating structures to speed queries. Example: Index on order date.
Infrastructure as Code (IaC)Managing infrastructure via code. Example: Terraform scripts.
LakehouseHybrid of data lake and warehouse. Example: Databricks Lakehouse.
Late-Arriving DataData that arrives after expected time. Example: Delayed event logs.
LoggingRecording system events. Example: Job execution logs.
Message QueueBuffer for asynchronous data transfer. Example: Kafka topic for events.
MetadataData about data. Example: Table definitions and lineage.
MetricsQuantitative indicators of performance. Example: Rows processed per run.
OrchestrationCoordinating pipeline execution. Example: DAG scheduling.
PartitioningDividing data for performance. Example: Partitioning by date.
Personally Identifiable Information (PII)Data identifying individuals. Example: Email addresses.
Pipeline MonitoringTracking pipeline execution status. Example: Failure notifications.
Primary KeyUnique identifier for a record. Example: CustomerID.
Processing TimeTimestamp when data is processed. Example: Ingestion time.
Query OptimizationImproving query efficiency. Example: Predicate pushdown.
Raw LayerStorage of unprocessed data. Example: Bronze layer.
Real-Time DataData available with minimal latency. Example: Live dashboard updates.
Retry LogicAutomatic reruns on failure. Example: Retry failed ingestion job.
ScalabilityAbility to handle growing workloads. Example: Auto-scaling clusters.
SchedulerTool managing execution timing. Example: Cron, Airflow.
SchemaThe structure of a dataset. Example: Table columns and data types.
Schema EvolutionHandling schema changes over time. Example: Adding new columns safely.
Secrets ManagementSecure handling of credentials. Example: Key Vault for passwords.
Semi-Structured DataData with flexible schema. Example: JSON, Parquet.
ServerlessInfrastructure managed by provider. Example: Serverless SQL pools.
Serving LayerLayer optimized for consumption. Example: BI-ready tables.
ShardingDistributing data across nodes. Example: User data split across servers.
Snowflake SchemaNormalized version of star schema. Example: Product broken into sub-dimensions.
Star SchemaFact table surrounded by dimensions. Example: Sales fact with date dimension.
Stream ProcessingProcessing data in real time. Example: Clickstream event processing.
Structured DataData with a fixed schema. Example: SQL tables.
Technical DebtLong-term cost of quick fixes. Example: Hardcoded transformations.
ThroughputAmount of data processed per unit time. Example: Records per second.
Transformation LayerLayer where business logic is applied. Example: dbt models.
Unstructured DataData without a predefined structure. Example: Images, PDFs.
WatermarkMarker for processed data. Example: Last processed timestamp.
WindowingGrouping stream data by time windows. Example: 5-minute aggregations.
Workload IsolationSeparating workloads to avoid contention. Example: Dedicated compute pools.

Please share your suggestions for any terms that should be added.