Most active commenters

    ←back to thread

    167 points yarapavan | 13 comments | | HN request time: 0.213s | source | bottom
    1. OhMeadhbh ◴[] No.43548441[source]
    I find this highly unlikely. My first day at Amazon I encountered an engineer puzzling over a perfect sine wave in a graph. After looking at the scale I made the comment "oh. you're using 5 minute metrics." Their response was "how could you figure that out just by looking at the graph?" When I replied "Queuing theory and control theory," their response was "what's that?"

    Since then, Amazon's hiring practices have only gotten worse. Can you invert a tree? Can you respond "tree" or "hash map" when you're asked what is the best data structure for a specific situation? Can you solve a riddle or code an ill-explained l33tcode problem? Are you sure you can parse HTML with regexes? You're Amazon material.

    Did you pay attention to the lecture about formal proofs. TLA+ or Coq/Kami? That's great, but it won't help you get a job at Amazon.

    The idea that formal proofs are used anywhere but the most obscure corners of AWS is laughable.

    Although... it is a nice paper. Props to Amazon for supporting Ph.D.'s doing pure research that will never impact AWS' systems or processes.

    replies(7): >>43549053 #>>43549089 #>>43549401 #>>43549462 #>>43549563 #>>43550279 #>>43552944 #
    2. georgeburdell ◴[] No.43549053[source]
    A graph of what?
    3. ◴[] No.43549089[source]
    4. ◴[] No.43549401[source]
    5. scubbo ◴[] No.43549462[source]
    They specifically mention "the P team at AWS". The two following things are perfectly able to be simultaneously true:

    * The average Amazon engineer is not expected to have awareness of CS fundamentals that go beyond LeetCode-y challenges

    * The average Amazon engineer builds using tools which are each developed by a small core team who _are_ expected to know those fundamentals, and who package up those concepts to be usefully usable without full understanding

    (I did 10 years on CDO, and my experience matches yours when interacting with my peers, but every time I interacted with the actual Builder Tools teams I was very aware that lived in different worlds)

    replies(1): >>43549689 #
    6. Dichlorodiphen ◴[] No.43549563[source]
    We recently did a proof of concept with P for our system, and the reception was warm enough that I expect adoption within the year. I wouldn’t exactly call us obscure, at least in the sense used above—greenfield big data system with a bog-standard mix of AWS services.

    I will say that time to productivity with P is low, and, in my experience, it emphasizes practical applicability more so than traditional modeling languages like TLA+ (this point is perhaps somewhat unsubstantiated, but the specific tooling we used is still internal). That is to say, it is fairly easy to sell to management, and I can see momentum already starting to pick up internally. No Ph.D. in formal methods required.

    And re: the hiring bar, I agree that the bulk of the distribution lies a bit further left than one would hope/imagine, but there is a long tail, and it only takes a handful of engineers to spearhead a project like this. For maintainability, we are betting on the approachable learning curve, but time will tell.

    replies(2): >>43550505 #>>43550877 #
    7. nextos ◴[] No.43549689[source]
    > The average Amazon engineer is not expected to have awareness of CS fundamentals that go beyond LeetCode-y challenges

    I find this a bit unsettling. There are dozens of great CS schools in the US. Even non-elite BSc programs in EU sometimes teach formal methods.

    There are also some good introductory books now, e.g. [1]. Perhaps its time to interview more on concepts and less on algorithmic tricks favored by LeetCode?

    I doubt current undergrads can't go beyond LeetCode-like challenges.

    [1] Formal Methods, An Appetizer. https://link.springer.com/book/10.1007/978-3-030-05156-3

    replies(1): >>43550333 #
    8. gqgs ◴[] No.43550279[source]
    Cool anecdote but I'm not sure how reasonable it is to expect every person to have expert domain knowledge and recall of every single computer science field just because they got a job to work at Amazon or any other MAANG company.
    9. retrocryptid ◴[] No.43550333{3}[source]
    Modern CS programs teach to what they perceive to be the interview their students will encounter after graduation: what is a tree data structure, how to craft a SQL query and how to calculate a CRC with a python library. More advanced CS/CE departments still teach discrete math and compilers/parsing for students intending to go to grad schools.

    My experience with recent CS grads is it's easier to hire Art and Political Science grads and take the time to teach them programming and all it's fundamentals. At least they won't argue with you when you tell them not to use regexes to parse HTML.

    10. Taikonerd ◴[] No.43550505[source]
    The problem (in my mind) with using P is that only a small % of problems are formalizable as communicating state machines.

    In your greenfield big data system, what were the state machines? What states could they be in?

    11. matu3ba ◴[] No.43550877[source]
    Thanks for the interesting insight. 1. What would you recommend to model multi-thread or multi-process problems on the same system? Is there a good read to give recommendations? 2. Is there a good overview on trade-offs between CSP, Actor model and other methods for this? 3. Are you aware of any process group models?
    12. atdt ◴[] No.43552944[source]
    OK, I will be the useful idiot. I don't fully understand your anecdote. Could you explain what is exactly it that you perceived and that the other engineer failed to see?
    replies(1): >>43554818 #
    13. sethammons ◴[] No.43554818[source]
    Periodic and regular cycles (sine wave) suggests that there is over correction happening in the system, preventing a stable point. More regular measurements or tempered corrections may be called for.

    Concrete example: the system sees it's queue utilization as high so it throttles incoming requests, but for too long, the queue looks super healthy on the next check, so the throttle removed but too long until checking again, and now the util is too high again.