A clerk needs a nightly 10-row lookup of holiday parking exceptions. What is the most appropriate tooling judgment?
Select an answer to reveal the explanation.
Short Explanation
You do not call the fire department to change a light bulb. A ten-row holiday list is a small cron SQL job, not a reason to spin up a Spark cluster.
Full Explanation
Spark shines on large, parallel, memory-intensive or streaming workloads. Tiny lookups and simple scheduled SQL against small tables are better served by ordinary databases or lightweight scripts. Right-sizing avoids unnecessary cluster cost and operational complexity for municipal IT.