软件工程Microservice 是目前非常流行的 Architecture Pattern ( 应用程式会拆分成多个 service 联合运行,通常会透过 RPC call 进行交互 ),进而推动的 Distrubution System 相关知识在Backend 领域中越来越显得重要。延伸的主题,Event Driven, Event sourcing, Distribution lock....other articles只是 Mocroservice 的缺点也是显而易见的,以下缺点都是相对于 monolithic 架构:

  • Performance issue
    • 相对于 monolithic 架构(全部写在同一个application),会增加网路传输的物理时间以及加密解密封包的效能损耗
  • Development Speed
    • 由于一个 Application 切成几个区块(services)进行开发,同时 scripts 行数会变多,需要考虑到分散式系统的各种 issue. ex: Transaction atomicity issue
  • Management Service
    • Deployment issue: 因为多增加了 Services ,因此需要部署跟设定的步骤也会随之变多。
    • Indepenccy Service issue: 个服务的相依性容易造成系统修改不易。
  • Evaluation

    最后结果为 Monolithic 的实作方式,可以增加 15倍左右的效率实验参数:

  • GKE(Google Kubernetes Engine) K8s,并开启 Auto-sacling Rescurces
  • Comparision
  • Monolithic
    • component 之间的传输,以 Unix PIPE 取代 RPC Call,即 [3] 专案,是以 [2] 专案为基础进行开发
    • 实作语言 GO
  • Microserivce
    • component 之间的传输以 gRPC,且有 11 个 services 交互运行,即参考资料的 [2] 专案
    • 实作语言 GO
  • Metric
    Monolithic
    Microservice
    QPS 10000 10000
    Avg of CPU Cores 28 78
    Latency (ms) 2.66 5.47

    结语

    Microservice Pattern 是以 Service 为单位将大型 Application 进行拆分,会产生管理上的难度以及物理上所造成的效能缺失,文章中所提到的实验有15 倍以上的差异。而 Microservice 所带来的好处是非常显而易见的:

  • Easy handle single service failed
  • Easy parallel develop in cross-team
  • Easy scalling up for specific services因此 Microservice 不是一个不好的 pattern ,而是思考这样的架构是否合适。
  • Reference

    [1] Ghemawat, Sanjay, et al. "Towards modern development of cloud applications." Proceedings of the 19th Workshop on Hot Topics in Operating Systems. 2023.[2] Online boutique. https://github.com/GoogleCloudPlatform/ microservices-demo, 2023.[3] github.com/ServiceWeaver,2023