How to scope a microservice?

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024

Комментарии • 14

  • @architagrawal5796
    @architagrawal5796 2 года назад +1

    Nice , Informative Content , Keep doing it Please :)

  • @vidhya821
    @vidhya821 Год назад

    Arre bahut acha content, and "what not" 😄

  • @deepanshusinghal2229
    @deepanshusinghal2229 2 месяца назад

    whre can we get the notes, that you are showing in the video for reference??

  • @srinivasgopishetty169
    @srinivasgopishetty169 2 года назад

    I really like your recordings. Can you share how do you do recordings ? Do you use any recording software ?

  • @prashantshubham
    @prashantshubham 2 года назад +1

    In some cases I think it's very tough to keep services independent. Suppose two service are using a queue and queue has messages of certain types, unless both services know about the queues message model how would they operate? And when we introduce the message sharing between them the codebase for message model is shared. So whenever the message format is changed the services will need to be changed and re-deployed accordingly.
    Is there any way we can avoid this? Please suggest if it's possible.

    • @AsliEngineering
      @AsliEngineering  2 года назад +6

      There is no way to avoid this but you can make the transition smoother. Instead of involving breaking change always make a backward compatible change to the message format this way the services will not be required to be deployed at the same time.
      A good way for both services to agree upon a format is through a shared library/configuration. So never copy the format at two places, instead create a shared lib and put the format there. So then it is all boils down to version upgrade of the dependent library.

    • @prashantshubham
      @prashantshubham 2 года назад

      @@AsliEngineering Thanks for explaining that’s on the same lines I was expecting. Thanks for great videos too 😊

  • @tuzlityreyansh5154
    @tuzlityreyansh5154 7 месяцев назад

    useful

  • @shishirchaurasiya7374
    @shishirchaurasiya7374 Год назад

    By seeing this video I am really feeling like I am upskilling myself for interviewing a architecture level role 😁😁

  • @ramraghu1513
    @ramraghu1513 2 года назад

    what is Cascading Failures?

    • @AsliEngineering
      @AsliEngineering  2 года назад +2

      First failed, because of which the second failed, and then the third, and fourth and so on. Falling one after the another like Dominos.

    • @ankitkumarsingh9815
      @ankitkumarsingh9815 2 года назад

      Read korth for cascading failures. Beautifully explained ❤️