
Answer-first summary for fast verification
Answer: To store multiple types of raw events in a single consolidated table for efficient ingestion.
A **multiplex bronze table** (often referred to as a single-table bronze approach) is used to simplify ingestion by consolidating various raw event types—often from different sources or schemas—into a single table. This pattern improves efficiency in streaming workloads by reducing the number of individual ingestion pipelines that need to be managed, allowing for centralized processing before data is fanned out to specific silver tables.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
In a structured streaming architecture, what is the primary objective of implementing a multiplex bronze table?
A
To enforce schema constraints early in the pipeline to prevent data skew.
B
To minimize the total number of partitions required for downstream streaming queries.
C
To store multiple types of raw events in a single consolidated table for efficient ingestion.
D
To facilitate historical auditing by enabling time travel queries on raw data.
No comments yet.