Database / Google Spanner Database Interview questions
Explain the internal working of the Spanner query execution engine?
Once the optimizer picks a plan, Spanner executes it as a tree of operators, distributed across whichever splits the query touches, and streams partial results back rather than materializing the whole result set at once.
For a query that only touches one split, execution is straightforward: the leader replica for that split runs the plan locally. For a query spanning multiple splits, for example a range scan across a large interleaved table, Spanner distributes the relevant operator subtrees to each split involved, and a coordinating node merges and, if needed, re-sorts or re-aggregates the partial results (for operations like ORDER BY, GROUP BY, or joins that cross split boundaries). Interleaved tables let some joins execute entirely within a split, avoiding this fan-out and merge step, which is a major reason interleaving is recommended for hot, frequently-joined parent-child access patterns rather than left as separate, non-interleaved tables.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
