What is Service Discovery?

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

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

  • @harigovind511
    @harigovind511 Год назад +5

    Thank you so much for this video series, really appreciate the contribution to the community. It’s people like you who make this into a vibrant community.🎉

    • @ADevStory
      @ADevStory  Год назад +1

      Oh thanks for the kind words!

  • @mariamismail8506
    @mariamismail8506 4 месяца назад +3

    i love how your videos are so on point and direct !!! thank youuu

    • @ADevStory
      @ADevStory  4 месяца назад

      Oh thank you! Glad you like them!

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

    I proposed server/self registration as a solution on a problem for our High Available microserices. Works like a charm now!
    Thanks very very much for your content! Percise and to the point!
    And the diagrams just amazing!
    Keep up the good work!

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

      Nice! Glad it worked ! Thanks for the feedback!

  • @Elnasir
    @Elnasir 10 месяцев назад +1

    I am now following your "Services" without a second thought 😄. Many Thanks 👌

    • @ADevStory
      @ADevStory  10 месяцев назад +1

      Hahaha amazing! Thanks! Glad you liked it!

    • @Elnasir
      @Elnasir 10 месяцев назад

      Yeah. A perfect opportunity to use the word "Subscribe" literally 😆@@ADevStory

  • @justynak.6686
    @justynak.6686 2 года назад +4

    Your videos are very concise and informative! Thank you for taking the time and making them. Looking forward to the next video on Service Meshes!

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

      Thank you! Glad it was useful for you!

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

    already waiting for Service Mesh video! Awesome job, congratulations !

  • @abhishekgowlikar
    @abhishekgowlikar Год назад +1

    Your videos are upto the point and crystal clear to understand, hats off.

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

      Thank you! Glad it was useful!

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

    Excelente! Siempre me ha gustado esa manera de explicar con el papel, lápiz y dibujos que tiene este canal. Todo queda explicado en una forma clara y práctica

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

      ¡Me alegra que lo disfrutes y sea útil! ¡Gracias por el feedback!

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

    Thanks for your short videos! Keep it up

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

    Excellent playlist, loved every bit of it.

  • @MultiSnajp
    @MultiSnajp Год назад +1

    thank you Sir for sharing your knowledge

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

      Thank you for watching and the feedback!

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

    Thank you for the explanation, it was cool 👍

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

      Glad you enjoyed it! Thanks!

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

    This is applied for instances as well in a composition for example

  • @afta24
    @afta24 Год назад +1

    you are pro, thanks!

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

      Thanks! Glad you enjoyed!

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

    Thanks for sharing

  • @oguzhan2393
    @oguzhan2393 9 месяцев назад +2

    is api gateway service discovery? Because api gateway also stores the services IP location and so on.

    • @ADevStory
      @ADevStory  9 месяцев назад

      Good question! The short answer is: no. The api gateway uses service discovery to find the service to call

  • @mykyta1235
    @mykyta1235 Год назад +2

    awesome.... just absolutely awesome content. One of the best, totally underrated. Thanks.

  • @appacc1600
    @appacc1600 Год назад +1

    Hi , what is different between SOA and Microservice Design ?

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

      Typically SOA was associated with a more structured way of developing services. There were things defined like services taxonomy, a service bus, wsdl documents that allow you import easily another service API and lots of XMLs.
      Microservices then came as a leaner approach where the idea is that you just create small services that talk to each other, typically over REST (but not exclusive). Then came the debate on how small should a "micro" service be. From there a bunch new of additional design patterns arose like API Gateway, Sagas, etc.
      To me, in essence they are the same, and just differ in the implementation details. You just do you system designs taking in consideration the basics (design principles, maintainability, domain driven design, etc) and trying not to overcomplicate things (by not having too much structure as typical SOA if not needed, and not making services so small that orchestrating and monitoring becomes a headache).

  • @yotambelgoroski9558
    @yotambelgoroski9558 29 дней назад

    I didn’t your point regarding “language agnostic”… Why would I need a language-based package? HTTP wouldn’t be enough?

    • @ADevStory
      @ADevStory  27 дней назад

      Yes HTTP would be the protocol but typically you will call it from one service to call another service. These are implemented in a specific language. Each language will have utils to make it easier to make http calls, and the higher level you code, the less you deal with the specific details of lower level like the http protocol

    • @yotambelgoroski9558
      @yotambelgoroski9558 27 дней назад

      @@ADevStory
      That has nothing to do with the service discovery itself. You interact with it using HTTP. Would it be useful to create a package that implements theunderline HTTP calls and exposes functions? For sure. But you can say that about any service. When you interact with Authentication service you will probably use some sort of Auth0 package. However, that doesn't make Auth0 is language-agnostic right?

    • @ADevStory
      @ADevStory  23 дня назад

      That's actually the point. If the network routing is hidden to your service (proxy) you don't need to implement anything on the client. If you have the routing in the client then you need to implement it. Not possible to make it language-agnostic because is on the client. You can create a generic library but your actual service needs to call that library. In the proxy one you just call another URL that will get you what you want.
      Hope is clearer :)

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

    Why the access of service discovery (client or server side) should be language dependent ? Aren't they calling Web Services ?

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

      Yes. But if your client needs to access another service you need to implement that code in your client's programming language. So if you have a python service A that needs to talk to your service registry you need that client code in Python that's is able to call the service registry and understand the protocol in Python.
      Then, if you have another service B in nodejs you need to do the same as well.
      Hope is clear.

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

      @@ADevStory so language dependency comes in between a client and service registry not necessarily between the client and the service(s) it wants because these can communicate via RESTful APIs(not exclusive) right?

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

      @@talentoutput2153 partially. So everyone you connect 2 systems you need to implement a connections n between them. If it is a REST API, it will go via http and most languages implement already that. Same for parsing the responses.
      If you add more validations on top of the calls or custom logic, you may need to replicate that across different services. If they are in the same language it's just about importing a library. If it's in different languages then you need to implement that library in multiple languages

  • @sdhetan3hetsa
    @sdhetan3hetsa Год назад +3

    Use microservices if method call is too fast.

  • @ZidHassan-i8w
    @ZidHassan-i8w 6 дней назад

    انا باخد معاش والدي وانا ارمله واخو انا باخد معي انا ارمله وانا باخد معاش والدي واخويا قسم لي في المعاش وهو ليه تامين رخصه واتوقف عنه معاش والده هل معاش والدي يرجع لي منه ثاني ‏‪1:05‬‏ يا قسمني في المعاش وهو بياخد تامين

  • @mykyta1235
    @mykyta1235 Год назад +1

    Cannot thank you enough. Open Patreon for your channel, I will subscribe. (or use RUclips one)

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

      Oh thank you very much! I've been thinking about it but need to have more time to dedicate to the channel. Maybe in the future 😀