What is Service Discovery?

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ก.ย. 2024

ความคิดเห็น • 50

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

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

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

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

  • @abhishekgowlikar
    @abhishekgowlikar ปีที่แล้ว +1

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

    • @ADevStory
      @ADevStory  ปีที่แล้ว

      Thank you! Glad it was useful!

  • @androsxs15
    @androsxs15 2 ปีที่แล้ว +2

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

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

  • @Elnasir
    @Elnasir 11 หลายเดือนก่อน +1

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

    • @ADevStory
      @ADevStory  11 หลายเดือนก่อน +1

      Hahaha amazing! Thanks! Glad you liked it!

    • @Elnasir
      @Elnasir 11 หลายเดือนก่อน

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

  • @Jefferson4026
    @Jefferson4026 3 หลายเดือนก่อน

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

  • @MultiSnajp
    @MultiSnajp 2 ปีที่แล้ว +1

    thank you Sir for sharing your knowledge

    • @ADevStory
      @ADevStory  2 ปีที่แล้ว

      Thank you for watching and the feedback!

  • @hamidja1537
    @hamidja1537 2 ปีที่แล้ว +1

    Thanks for sharing

  • @artemcodes
    @artemcodes 2 ปีที่แล้ว +1

    Thank you for the explanation, it was cool 👍

    • @ADevStory
      @ADevStory  2 ปีที่แล้ว

      Glad you enjoyed it! Thanks!

  • @sdhetan3hetsa
    @sdhetan3hetsa 2 ปีที่แล้ว +7

    Use microservices if method call is too fast.

  • @afta24
    @afta24 ปีที่แล้ว +1

    you are pro, thanks!

    • @ADevStory
      @ADevStory  ปีที่แล้ว

      Thanks! Glad you enjoyed!

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

  • @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 หลายเดือนก่อน

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

    • @ADevStory
      @ADevStory  หลายเดือนก่อน

      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 หลายเดือนก่อน

      @@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  หลายเดือนก่อน

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

  • @mykyta1235
    @mykyta1235 ปีที่แล้ว +2

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

    • @ADevStory
      @ADevStory  ปีที่แล้ว +1

      Glad you liked it!

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

  • @ZidHassan-i8w
    @ZidHassan-i8w 27 วันที่ผ่านมา

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

  • @chessmaster856
    @chessmaster856 9 วันที่ผ่านมา

    Basically no one ever uses cqrs. This is just talk as architect to show off knowledge.

    • @ADevStory
      @ADevStory  9 วันที่ผ่านมา

      I've used and I have seen it being used at work. Really relevant when needing systems that are populated via event sourcing. Otherwise to do CRUD operations or most web applications where only data input directly by the user is added is not necessary to use.

  • @mykyta1235
    @mykyta1235 ปีที่แล้ว +1

    Cannot thank you enough. Open Patreon for your channel, I will subscribe. (or use TH-cam 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 😀