TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

How to Rock a Systems Design Interview

75 pointsby regsover 13 years ago

5 comments

socraticover 13 years ago
Obviously, this is marketing rather than a serious treatment of the topic. It seems to basically say: "in order to design a system, you should have a regular undergraduate Computer Science education" which seems maybe like a prerequisite (and maybe informative about their hiring process) but not very useful.<p>However, for what it's worth, the two best resources I've seen for systems design are:<p>Hints for Computer System Design: <a href="http://cseweb.ucsd.edu/classes/wi08/cse221/papers/lampson83.pdf" rel="nofollow">http://cseweb.ucsd.edu/classes/wi08/cse221/papers/lampson83....</a><p>How to Design a Good API: <a href="http://www.youtube.com/watch?v=aAb7hSCtvGw" rel="nofollow">http://www.youtube.com/watch?v=aAb7hSCtvGw</a><p>What else should be in this bibliography?
评论 #3180112 未加载
luckydudeover 13 years ago
Most of what they want is exactly why I wrote lmbench, it measures latency and bandwidth of just about everything that you should care about.<p>One of our guys plotted the memory latency benchmark here:<p><a href="http://www.bitmover.com/mem_lat.jpg" rel="nofollow">http://www.bitmover.com/mem_lat.jpg</a><p>He shows you that and says "tell me everything you can tell me from this graph". It's usually a two hour conversation.
评论 #3178850 未加载
评论 #3180878 未加载
jtchangover 13 years ago
Designing systems well means understanding tradeoffs when you have choices. And these days you tend to have a lot of choices.<p>From what hardware you run to what software stack you use. A good systems architect will make these decisions on the fly.<p>To get better at designing systems you have to actually look at ones in practice. Especially ones you think are bad. Because often what led to that design was a series of tradeoffs. And systems design tends to run end to end. You have to think about not only speed and reliability but often ease of use.
traveldotto1over 13 years ago
Some of these system designs interview and algorithm interviews are just overrated. You are literally testing how much "alike"" this candidate is thinking like you do, which sometimes is not the right way to conduct an interview.<p>How many people remember the pseudo-code for quick sort right away? A true engineering test or interview should be done in coding tests and his/her ability to QA his/her own code, and explain it in a clear fashion.
mrleinadover 13 years ago
Can anyone recommend a good reading on systems design? I'm already reading "Software architecture in practice".
评论 #3178700 未加载
评论 #3178425 未加载