Batch Processing
Everything on SkillVeris tagged Batch Processing — collected across the glossary, study notes, blog, and cheat sheets.
7 resources across 1 library
Interview Questions(7)
ETL vs ELT Pipelines: What is the Difference?
ETL (Extract, Transform, Load) transforms data in a separate processing engine before loading it into the target system, while ELT (Extract, Load, Transform) l…
What is Turnaround Time in CPU Scheduling?
Turnaround time is the total time a process spends in the system, measured as completion time minus arrival time, and it includes waiting in the ready queue, e…
What is Throughput in Operating Systems?
Throughput in an operating system is the number of processes completed per unit of time, and it measures overall system productivity rather than how any single…
How Do You Design a Friend Recommendation System?
A friend recommendation system generates candidates from a user’s social graph (friends-of-friends, mutual connections) using a graph database or precomputed g…
Batch vs Stream Processing: How Do You Choose?
Batch processing runs computations over a bounded, already-collected chunk of data on a schedule, trading latency for simplicity and easy correctness, while st…
What is Lambda Architecture in System Design?
Lambda architecture is a data-processing pattern that runs a slow, accurate batch layer over the complete historical dataset alongside a fast speed layer over…
What are Kubernetes Job and CronJob?
A Kubernetes Job runs one or more Pods to completion for a finite, run-once task and tracks success, while a CronJob wraps a Job template with a cron schedule…