6: Typeahead Suggestion + Google Search Bar | Systems Design Interview Questions With Ex-Google SWE

Поділитися
Вставка

КОМЕНТАРІ • 40

  • @danielginovker1984
    @danielginovker1984 6 місяців тому +11

    My girlfriend no joke asked if you were gonna steal me from her because of how much I talk about your channel. Keep it up

  • @jordiesteve8693
    @jordiesteve8693 22 дні тому +1

    really loved how you were suggesting solutions and evaluating them. Most solutions out there just touch a naive sql query solution and jump directly to a trie.

  • @Xiaoxixi939
    @Xiaoxixi939 Місяць тому +2

    This is the best video I've seen explaining type ahead, thanks a lot for making great content!

  • @i_want_youtube_anonymity7099
    @i_want_youtube_anonymity7099 2 місяці тому +2

    Wow, a video where the capacity estimates actually matter. Really nice to see you compare these to memory amounts of client / servers.

    • @jordanhasnolife5163
      @jordanhasnolife5163  2 місяці тому +3

      I perform capacity estimates every weekend when figuring out how much late night food I should eat to not explode the next morning

  • @pavankhubani4191
    @pavankhubani4191 7 місяців тому +1

    This is a great video, thanks for taking efforts to explain everything in such depth.

  • @almirdavletov535
    @almirdavletov535 4 місяці тому +1

    Great vid as always! Would be cool to see how sentence suggestions are working, how words are connected to each other etc.

  • @aneeshbhansali
    @aneeshbhansali 7 місяців тому +6

    At 12:55 you should push onto the heap before you pop, otherwise if the value you push is smaller than the value you are popping, your result will be incorrect.

  • @LawZist
    @LawZist 7 місяців тому +1

    Great video! Keep with the good job i really enjoyed it

  • @schan263
    @schan263 7 місяців тому +1

    Thanks for making the video. It was interesting and helpful.

  • @robinpan2245
    @robinpan2245 5 місяців тому +2

    Your jokes make the grind slightly less terrible :))

  • @ShreeharshaV
    @ShreeharshaV 19 днів тому +1

    Great video Jordan. Had this question to ask:
    How does the design take care of server going down that was handling "app" (from word apple) partition. Trie data stored on that server would be lost so I believe data would be replicated across multiple nodes? Also, how would the switchover take place in this scenario? Zookeeper listening to all the active/replica nodes and switching over when it stops getting heartbeat? Is that correct understanding?

    • @jordanhasnolife5163
      @jordanhasnolife5163  18 днів тому +1

      Yes, we'd want all nodes to have replicas. Zookeeper can listen to them and round robin requests to these nodes. In this case, all nodes are replicas as we don't write to any of them, they're all read only.

  • @alphabeta644
    @alphabeta644 22 дні тому +2

    Question: @jordan @41:21, it is unclear to me how our queries are processed with the trie distributed across multiple servers. Lets say there are only two servers, one contains trie for words [a, b, aa,... abc] and other for [abcd,... zzzz]. In this case when I start typin and have typed "a", then I get connected to first server via websocket, and then when I type b and c, I continue to be connected and traverse the trie down to character 'c' on first server. Now, when I type 'd' what happens? Is it correct that: a) The first server (to which I am connected) will see that 'c' has no children, thus will break the websocket connection, therefore b) client will reconnect saying "gimme stuff for abcd", and load balancer directs me to second server, and c) the second server's trie has root node of "abc", so it goes down one step to 'd' and return the values?
    Is my understanding correct above?

    • @jordanhasnolife5163
      @jordanhasnolife5163  22 дні тому

      I'd think that at the node at which the partition begins on system 1 it would say something like "no longer on this system" so that the client knows it needs to reach back out to the load balancer.

  • @yrfvnihfcvhjikfjn
    @yrfvnihfcvhjikfjn 7 місяців тому +2

    Merry Christmas 🎄🎁

  • @aritchanda205
    @aritchanda205 5 місяців тому +3

    @ 21:08 short is 2bytes so its 16bits not 8 and hence we have like 65k terms ( i have to point this minor insignificant mistake or i cannot go to bed since I'm a internet police)

  • @ivanaslamov
    @ivanaslamov 3 місяці тому +1

    You should probably replace Flink with Spark Streaming since you already planning on using Spark downstream.

    • @jordanhasnolife5163
      @jordanhasnolife5163  2 місяці тому

      Yeah in reality I think that's reasonable, but for the sake of the systems design interview I like to be idealistic.

  • @levimatheri7682
    @levimatheri7682 2 місяці тому +1

    Top tier videos! Can you do Design a Parking Lot?

  • @meenalgoyal8933
    @meenalgoyal8933 4 місяці тому +1

    Another great video! Thanks for making it.
    I am a bit confused about the update path.
    1. It looks like we are creating new trie from the logs (containing search term with freq in kafka) instead of updating the existing trie. Lets say we want to account for last few days of search, then to build the trie shouldn't we feed the copy of existing trie as well (along with recent search logs) to hdfs to calculate top suggestions for each prefix?
    2. Instead of app server just getting data about top suggestion for each prefix from hdfs, is it possible for us to compute the trie as well offline and then load it in server? If yes, can you also please suggest tools to use for computing trie offline and loading from offline to server memory ?

    • @jordanhasnolife5163
      @jordanhasnolife5163  4 місяці тому

      1) HDFS already has the last few days of data available. It doesn't have to delete that just because we computed another trie from it. You wouldn't have to send the existing trie.
      2) Considering that you can't really represent a trie in a text file like that, I'm not quite sure. I guess in theory, you could compute it on one server from the hdfs data, then serialize it to JSON or something, then send it out to all of the other servers. But then even, you're just building a trie from the JSON rather than the frequencies which frankly has a similar time complexity.

  • @jieguo6666
    @jieguo6666 Місяць тому +1

    Hey Jordan, thanks for this video! I'm curious about how trie can be stored in different databases, could you share something related? Additionally, I think we can have cache in front of suggestion service, or probably what you mean by saying suggestion service already include that? Thanks!

    • @jordanhasnolife5163
      @jordanhasnolife5163  Місяць тому

      I guess it can't really, hence our issue. You can be cheeky and use the tactic I used to store it in spark, however then you lose some of the nice time complexity
      As for Q2, the suggestion service is effectively already a cache - it's in memory and has cached the top suggestions for each search term

  • @tymurmaryokhin9767
    @tymurmaryokhin9767 2 місяці тому +2

    Why not something like Elasticsearch for prefix searching with the same range based partitioning?

    • @jordanhasnolife5163
      @jordanhasnolife5163  2 місяці тому

      It's going to be slower: that's on disk, and now I have to perform a binary search for my word rather than just traversing down a trie

    • @firezdog
      @firezdog Місяць тому

      @@jordanhasnolife5163 I'm not sure I agree. Elasticsearch supports term and phrase suggestions as special use cases, and it gives users control over general relevance features. I work on a search team, and our design for this feature is centered around an Elasticsearch cluster w/ special typeahead indices, an ETL from BQ to that cluster, and a service to query the cluster. I don't know if our design is the industry standard, and it depends on exactly what you're trying to do, but I think this is definitely one of the ES use cases. (Typeahead isn't just about popularity either, there could be many different heuristics you need to use to rate which suggestions are the best. There may be machine learning models involved to help determine that as well.)

  • @rahullingala7311
    @rahullingala7311 6 місяців тому +1

    What are your thoughts on using GraphDBs like Neo4j to store the trie?

    • @jordanhasnolife5163
      @jordanhasnolife5163  6 місяців тому +1

      I think that if we can avoid storing this guy on disk, we should! It's a pretty inefficient operation to jump from random spot to random spot on disk.

  • @ariali2067
    @ariali2067 4 місяці тому +1

    Curious why we need stream processing (Kafka -> Flink -> HDFS) to upload newly entered work to HDFS? Why cannot' we upload them to HDFS directly?

    • @jordanhasnolife5163
      @jordanhasnolife5163  4 місяці тому +1

      hdfs stores full files, not an individual string of text. We need to aggregate the queries first

    • @NakulMatta
      @NakulMatta 4 місяці тому

      @@jordanhasnolife5163 Is it better if we use spark streaming consumer instead of flink here? We can so batching using this and write a batch to HDFS

    • @NAC140
      @NAC140 12 днів тому

      I think the main point is that HDFS is designed for processing large sequential data write like GB level, not good for small data write/read, thus message queue is better for keep event with small data size