What is Service Discovery?

Sdílet
Vložit
  • čas přidán 27. 08. 2024

Komentáře • 48

  • @harigovind511
    @harigovind511 Před rokem +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  Před rokem +1

      Oh thanks for the kind words!

  • @mariamismail8506
    @mariamismail8506 Před 4 měsíci +3

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

    • @ADevStory
      @ADevStory  Před 4 měsíci

      Oh thank you! Glad you like them!

  • @fdhsdrdark
    @fdhsdrdark Před 2 lety +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  Před 2 lety

      Nice! Glad it worked ! Thanks for the feedback!

  • @Elnasir
    @Elnasir Před 10 měsíci +1

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

    • @ADevStory
      @ADevStory  Před 10 měsíci +1

      Hahaha amazing! Thanks! Glad you liked it!

    • @Elnasir
      @Elnasir Před 10 měsíci

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

  • @justynak.6686
    @justynak.6686 Před 2 lety +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  Před 2 lety

      Thank you! Glad it was useful for you!

  • @abhishekgowlikar
    @abhishekgowlikar Před rokem +1

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

    • @ADevStory
      @ADevStory  Před rokem

      Thank you! Glad it was useful!

  • @ceciliaflores9703
    @ceciliaflores9703 Před 2 lety +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  Před 2 lety +1

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

  • @androsxs15
    @androsxs15 Před 2 lety +2

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

  • @bamii_a
    @bamii_a Před 2 lety +1

    Excellent playlist, loved every bit of it.

  • @staspanyukov4822
    @staspanyukov4822 Před 2 lety +1

    Thanks for your short videos! Keep it up

  • @Jefferson4026
    @Jefferson4026 Před 2 měsíci

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

  • @MultiSnajp
    @MultiSnajp Před rokem +1

    thank you Sir for sharing your knowledge

    • @ADevStory
      @ADevStory  Před rokem

      Thank you for watching and the feedback!

  • @artemcodes
    @artemcodes Před 2 lety +1

    Thank you for the explanation, it was cool 👍

  • @oguzhan2393
    @oguzhan2393 Před 9 měsíci +2

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

    • @ADevStory
      @ADevStory  Před 9 měsíci

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

  • @afta24
    @afta24 Před rokem +1

    you are pro, thanks!

  • @hamidja1537
    @hamidja1537 Před 2 lety +1

    Thanks for sharing

  • @mykyta1235
    @mykyta1235 Před rokem +2

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

  • @appacc1600
    @appacc1600 Před rokem +1

    Hi , what is different between SOA and Microservice Design ?

    • @ADevStory
      @ADevStory  Před rokem

      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 Před měsícem

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

    • @ADevStory
      @ADevStory  Před měsícem

      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 Před měsícem

      @@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  Před 27 dny

      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 :)

  • @sdhetan3hetsa
    @sdhetan3hetsa Před rokem +3

    Use microservices if method call is too fast.

  • @mysocial
    @mysocial Před rokem

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

    • @ADevStory
      @ADevStory  Před rokem

      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 Před rokem

      @@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  Před rokem

      @@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

  • @ZidHassan-i8w
    @ZidHassan-i8w Před 10 dny

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

  • @mykyta1235
    @mykyta1235 Před rokem +1

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

    • @ADevStory
      @ADevStory  Před rokem

      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 😀