MicroService-CheatSheet
MicroService CheatSheet | 微服务理念、架构与实践速览
微服务是系统或应用程序中的自包含独立组件。每个微服务都应该有明确的作用域和责任,理想情况下,一个微服务只做一件事。它应该是无状态的或有状态的,如果它是有状态的,它应该带有自己的持久层(即数据库
微服务微前端,都是希望将某个单一的单体应用,转化为多个可以独立运行、独立开发、独立部署、独立维护的服务或者应用的聚合。如康威定律
很多人认为微服务是一种细粒度的
计算资源的快速分配
基本的监控
快速部署
虽然如
单体应用与微服务
微服务是一个简单而泛化的概念,不同的行业领域、技术背景、业务架构对于微服务的理解与实践也是不一致的。与微服务相对的,即是单体架构的巨石型


架构衍化
团队规模不大的时候,单块架构比微服务架构具有更高的生产率
在系统早期流量较少时,只需一个应用将所有功能都部署在一起,以减少部署节点和成本;此时,用于简化增删改查工作量的数据访问框架

存储分隔与无状态服务
在编码中,我们往往倾向于使用纯函数来描述抽象逻辑,以保证代码的可读性与可测性;并且纯函数也可以非常方便地使用并发编程或者结果缓存等方式来进行扩展与优化。而在微服务系统中
The monolithic approach on the left has a single database and tiers of specific technologies.
The microservices approach on the right has a graph of interconnected microservices where state is typically scoped to the microservice and various technologies are used.
In a monolithic approach, typically the application uses a single database. The advantage is that it is a single location, which makes it easy to deploy. Each component can have a single table to store its state. Teams need to strictly separate state, which is a challenge. Inevitably there are temptations to add a new column to an existing customer table, do a join between tables, and create dependencies at the storage layer. After this happens, you can’t scale individual components.
In the microservices approach, each service manages and stores its own state. Each service is responsible for scaling both code and state together to meet the demands of the service. A downside is that when there is a need to create views, or queries, of your application’s data, you need to query across disparate state stores. Typically, this is solved by having a separate microservice that builds a view across a collection of microservices. If you need to perform multiple impromptu queries on the data, each microservice should consider writing its data to a data warehousing service for offline analytics.

所谓的“单体”,即把所有服务代码结合一个“项目”打包发布,也就是一个“普通”的项目并且共用一个数据库,但每个服务的表名都有服务的标识(约定
微服务的挑战
微服务应用往往由多个粒度较小,版本独立,有明确边界并可扩展的服务构成,各个服务之间通过定义好的标准协议相互通信。在构建微服务架构时,模块化

当我们开始构建微服务系统时,首先要考虑的就是服务之间如何通信交互。基于微服务架构构建的应用程序或
服务网关
网关一词较早出现在网络设备里面,比如两个相互独立的局域网段之间通过路由器或者桥接设备进行通信,这中间的路由或者桥接设备我们称之为网关。
相应的
Kong, Traefik, Caddy, Linkerd, Fabio, Vulcand, and Netflix Zuul seem to be the most common in microservice proxy/gateway solutions. Kubernetes Ingress is often a simple Ngnix, which is difficult to separate the popularity from other things.
A Service Mesh is related, but distinct from the concept of API gateways, edge proxies, and the enterprise service bus. The service mesh is a networking model that sits at a layer of abstraction above TCP/IP. A Service Mesh provides three benefits:
security (TLS for service to service authentication) intelligent traffic management (proxy, deployed as a sidecar to the relevant service) visibility (monitoring and tracing for troubleshooting and debugging) Lyft’s Istio or Bouyant’s Linkerd or Conduit are examples of a Service Mesh, while Traefik, Envoy, Kong, Zuul, etc. are API Gateway implemented using Reverse Proxy. Before Linkerd/Istio/Conduit, large companies implemented the same functionality using fat client libraries.
In these systems, a generalized communication layer became suddenly relevant, but typically took the form of a “fat client” library—Twitter’s Finagle, Netflix’s Hysterix, and Google’s Stubby being cases in point.
1、面向
这类场景,在物理形态上类似前后端分离,前端应用通过
2、面向合作伙伴开放
这类场景,主要为了满足业务形态对外开放,与企业外部合作伙伴建立生态圈,此时的
3、企业内部系统互联互通
对于中大型的企业内部往往有几十、甚至上百个系统,尤其是微服务架构的兴起系统数量更是急剧增加。系统之间相互依赖,逐渐形成网状调用关系不便于管理和维护,需要
服务发现是大部分分布式系统和面向服务架构的核心组件。最初问题看起来很简单:客户如何决定服务的
通常,你开始一些静态的配置,这些配置离你需要做的还挺远的。当你开始布署越来越多的服务时,事情会越来越复杂。在一个上线的系统中,由于自动的或人为的规模变化,服务的位置会经常的变化,例如布署新的服务,服务器宕机或者被替换。
在这些应用场景中为了避免服务冲突,动态的服务注册和发现会越来越重要。
定位服务的问题划分为两类。服务注册与服务发现。
- 服务注册
- 服务进程在注册中心注册自己的位置。它通常注册自己的主机和端口号,有时还有身份验证信息,协议,版本号,以及运行环境的详细资料。 - 服务发现
- 客户端应用进程向注册中心发起查询,来获取服务的位置。
任何服务注册、服务发现也有其它开发、操作层面的考虑:
-
监控
- 如果服务注册失败会发生什么?有时会因为超时、或者其它进程而突然处于未注册状态。通常会要求服务实现心跳机制来确保其活跃性,并且通常要求客户端有能力可靠地处理失效的服务。 -
负载均衡
- 如果多个服务被注册,怎样来处理所有的客户端跨服务的均衡问题?如果有个主服务,它能被客户端正确的判断吗? -
集成风格
- 注册中心仅仅提供了少量语言的绑定,例如仅仅支持Java 吗?集成需要嵌入注册与发现的代码到程应用程序中,还是可以选择一个辅助进程? -
运行时依赖
- 它需要JVM ,Ruby 或者其它与你的运行环境不兼容的软件吗? -
可用性考虑
- 丢失一个节点能继续工作吗?升级时不会中断服务吗?注册处会成为架构的中心部分,会变成单点故障吗?
请求路由,客户端直接调用
设计要点
可用性,必须保证高可用
扩展性,可以灵活扩展以支持特定业务比如特定业务流控
高性能,通常使用异步
服务注册与服务发现
服务协调
配置中心
服务编排
Service Mesh
价值
分离控制与逻辑,分离业务逻辑与路由,流控,熔断,幂等,服务发现,鉴权等控制组件
适用场景
老系统改造扩展,
部署
在项目迭代的过程中,不可避免需要”上线“。上线对应着部署,或者重新部署;部署对应着修改;修改则意味着风险。
Blue/Green Deployment | 蓝绿部署
蓝绿部署是不停老版本,部署新版本然后进行测试,确认