Martin Fowler - Microservices

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

КОМЕНТАРІ • 29

  • @RonClabo
    @RonClabo 8 років тому +60

    I love that he points out that asynchronicity increases complexity. I think this fact is often overlooked in software architecture decisions.

  • @richardhp77
    @richardhp77 4 роки тому +8

    I built a project once where all the business logic was in modules, and each module communicated through a service which was injected at runtime. This meant I could deploy the entire codebase as a monolith, or just by changing the config files, deploy as independent services. This was done just by injecting a network based inter-module communication plugin rather than an in-memory option. Also the DB service was injected at runtime, so you could alter the config file and point each module at either the same DB or different ones, and also swap the DB drivers as well. Worked pretty well as I recall, and meant we weren't boxed into either architecture until later on down the line when we decided to deploy. Also meant the business logic could be tested independently of how the deployment was to be done.

  • @dilneicunha
    @dilneicunha 7 років тому +17

    Great.... What I see and understand after watching Martin Fowler is that many software development companies are migrating their applications to micro-services without skewing the whole context. Not with technical or sufficient discernment, then they do just by fashion. And when the decision is not technical enough, many of these projects go bad or even fail, today's developers are lazy, they do not improve, I see that if we do not have a team of seniors we must invest in the change of our culture before To move on.

  • @mayanksj
    @mayanksj 9 років тому +8

    A very precise and concise introduction to microservices. Thanks Martin Fowler.

  • @AnujSharma-xo3qg
    @AnujSharma-xo3qg 8 років тому +5

    thanks to Martin with a great explanation about micro services, especially when to use, where to use, how to use & not when to use.

  • @georgesmith3022
    @georgesmith3022 5 років тому +8

    Microservices are good in theory, but in practice there are many problems, i dont think there are many people who know how to do it right

  • @vikassinghalld
    @vikassinghalld 7 років тому +5

    It always delightful to listen Martin Fowler

  • @KevinSheppard
    @KevinSheppard 8 років тому +31

    I feel like I could study under this guy.

    • @zHqqrdz
      @zHqqrdz 7 років тому +10

      I'd be willing to work for free for him for 10 straight years just to know everything he knows.

  • @Arjun-tg1go
    @Arjun-tg1go 4 роки тому +1

    If someone reads about SOA principles as of today.. they would think Microservices are just another name for it... I think when SOA came out, companies implemented SOA using current technology at that time and it gave SOA a bad name...

  • @JohnSanabria
    @JohnSanabria 9 років тому +2

    Where I can get the slides of this presentation?

  • @southern_smacker
    @southern_smacker 7 років тому +1

    Good explanation, Thumbs up!

  • @sagarjunnarkar8384
    @sagarjunnarkar8384 8 років тому +1

    Nice explanation!!!

  • @sahild6584
    @sahild6584 8 років тому +5

    each service have different datastore, surely it will detoriate the app performance, because communication is happening over network, which is again a bottleneck.

    • @flaviuszoltan1754
      @flaviuszoltan1754 6 років тому

      I don`t see that a strong reason for using the same data store. The network communication issue can be solved, for example, by having services that communicate to each other deployed on the same data center.

    • @evelynlima3769
      @evelynlima3769 5 років тому

      that's where docker containers comes to place, in the cloud

    • @ksaweryglab
      @ksaweryglab 5 років тому

      So what would be the alternative? Some services can share the data store but I hear this argument over and over again that it's better if each service has its own.

    • @JamesSmith-cm7sg
      @JamesSmith-cm7sg 4 роки тому

      Barely noticeable within the same network

  • @chihabahmed5207
    @chihabahmed5207 7 років тому

    Hi there, if i multiple services that they work independently ( will they still be called microservice)?

    • @flaviuszoltan1754
      @flaviuszoltan1754 6 років тому

      Multiple services that work independently is just one small characteristic, but is not enough to call it Microservices

    • @_jfsanchez_
      @_jfsanchez_ 5 років тому

      If they do not interact at all, I think it's not microservices.

  • @umeshdimri5599
    @umeshdimri5599 7 років тому

    does microservice rise means that the end of soa is coming?

    • @peterlee9915
      @peterlee9915 6 років тому

      Umesh Dimri i don’t think so, micro service is just a realization of soa.

    • @AlanCostaPlus
      @AlanCostaPlus 6 років тому

      He pointed microservices as being a subset of SOA. If anything SOA is being reinforced here.

    • @xnoreq
      @xnoreq 5 років тому

      Microservices are a way of implementing SOA....

    • @Arjun-tg1go
      @Arjun-tg1go 4 роки тому

      No, as he mentioned Microservices are subset of SOA... so end of SOA means end of Microservices

  • @suchoudh
    @suchoudh 5 років тому

    Superlike