Building a microservice architecture with ASP.NET Core - Gill Cleeren - NDC London 2022

Поділитися
Вставка
  • Опубліковано 17 лис 2024

КОМЕНТАРІ • 44

  • @appology9102
    @appology9102 7 місяців тому

    First advertisement I got was right when he clicked on VS to view the first microservice. Great timing! 😂

  • @thiagomatu
    @thiagomatu 2 роки тому +15

    Can this example be shared in a Github repo for studying purposes?

  • @lawrencejob
    @lawrencejob 2 роки тому +8

    I’d love to see a comparison of Event Grid vs Service Bus for the purpose of micro services comms. MS docs seem to suggest they recommend EG for this

    • @soucianceeqdamrashti8175
      @soucianceeqdamrashti8175 2 роки тому +3

      They have different purposes. Event Grid is for notification of events. Service Bus is for messaging, and usually includes small to large size payloads.

    • @vivekkaushik9508
      @vivekkaushik9508 Рік тому

      @@soucianceeqdamrashti8175Exactly you got it.

  • @andersborum9267
    @andersborum9267 Рік тому +3

    As far as common sense goes for domain driven design (which is partly what this talk is about), it's generally bad practice to let microservices query data across eachother; that is, unless I'm completely mistaken.

  • @greekplayback
    @greekplayback 2 роки тому +12

    Thanks , Can you share demo code?

  • @AfrimKamberi
    @AfrimKamberi 2 роки тому +2

    Amazing talk. 👏👏

  • @obinnaokafor6252
    @obinnaokafor6252 2 роки тому +3

    Amazing talk.

  • @oscarangelramirez83
    @oscarangelramirez83 2 роки тому +1

    Eres MVP y metes la mayor parte del código en el controller...por eso hay sistemas inmantenibles

  • @olivier0003
    @olivier0003 Рік тому +1

    Gill is a great dvelopper and teacher. Where is the source code ?

  • @vmachacek
    @vmachacek 2 роки тому +5

    the fact this demo is not using minimal APIs i see as a missed opportunity

    • @JamesOfKS
      @JamesOfKS 2 роки тому +2

      thanks for menioning this. reminds me of nancy which i really liked.

  • @jasonjimenez9116
    @jasonjimenez9116 8 місяців тому

    So microservices still a thing or has modular monolithic taken over?

  • @iqbaljournals
    @iqbaljournals Рік тому

    Where we can get the projecr solution.please??

  • @eugenehlushin1746
    @eugenehlushin1746 2 роки тому +10

    I bet the author has no practical experience with this architecture. Imagine you have MVC -> BFF -> Service1 -> Service2 -> ServiceN and suddenly you need to add one column to ServiceN db and expose it all the way up to the MVC. It's also a lot of fun run N number of services locally to fix a bug. Another point is SLA is growing with N times. Backward compatibility and downtime issues.

    • @KennethDC1337
      @KennethDC1337 2 роки тому

      Microservices became more popular because it is easier to do thanks to Kubernetes. Versioning and rolling updates are often easier then.

  • @Krawcu_
    @Krawcu_ Рік тому +1

    bro fr looks like Michael Yagoobian when he was a child

  • @tandjebantje4460
    @tandjebantje4460 8 місяців тому

    Why is so much business logic in the controllers?

  • @urzaaaaa
    @urzaaaaa 2 роки тому +29

    The guy on thumbnail looks like he could use some monolith and good sleep. Microservices are buzzword and incorrect tool in 99% cases. No you are not building the next Netflix.

    • @Clank-j6w
      @Clank-j6w 2 роки тому +9

      Opened the video to share the same sentiment.

    • @unskeptable
      @unskeptable 2 роки тому +6

      Monolith is very old architecture. Time to move on to better solutions. But you must be capable to learn them first .

    • @mikeb8682
      @mikeb8682 2 роки тому +1

      Yip. Im always amazed how many ways they can dissect the same frog.

    • @codingstyle9480
      @codingstyle9480 2 роки тому +8

      99%! Do not exaggerate. It seems you have worked only on petty projects. Your reluctance or incompetence to be able learn new technology does not make the new architectural software patterns bad. As for the guy here, yes I agree with you; he needs some sleep.

    • @flyingpig7203
      @flyingpig7203 2 роки тому

      I have to agree on the "buzzword" reference. I feel like MS is constantly repackaging existing tech as new? "Eventual Consistency"... I'm thinking I have always known this as propagation??? Am I taking crazy pills?