Skip to content

此库为https://github.com/choelea/spring-cloud-netflix 的演进版,在此基础上增加了全链路跟踪,服务监控及跨服务日志跟踪

Notifications You must be signed in to change notification settings

choelea/spring-cloud-nodejs

Repository files navigation

##Spring Cloud Netflix / Nodejs 尝试使用Spring Cloud Netflix 加 Nodejs 技术栈混合搭建微服务。 (示例并无任何业务意义,只为做演示)

此库为https://github.com/choelea/spring-cloud-netflix 的演进版,在此基础上增加了全链路跟踪,服务监控及跨服务日志跟踪 代码: https://github.com/choelea/spring-cloud-nodejs/ 实现如下

  1. 服务注册发现
  2. 服务间调用(feign)
  3. 服务路由
  4. 负载均衡 (eureka client 端)
  5. 分布式链路调用监控系统
  6. 跨服务日志跟踪
  7. 服务监控

相关版本依赖

Spring Boot: 1.5.9.RELEASE **Spring Cloud: ** Edgware.RELEASE Nodejs: v8.9.1 (本机是v8.9.1的,没有在其他版本上做测试)

架构图 (Architecture for microservice)

此图仅仅是服务注册的,监控和全链路跟踪未添加

架构图

  • eureka-server: Spring Boot + Cloud 技术栈搭建eureka 服务。(服务注册中心)
  • bookmark-service: Spring Boot 的微服务程序
  • nodejs-bookservice nodejs开发的微服务
  • composite-service 聚合服务
  • spring-boot-admin-server Spring Boot 监控
  • zipkin 分布式链路追踪服务
  • spring-apigateway Spring Boot + Cloud Netflix技术栈搭建的网关
  • nodejs-web nodejs开发的网关兼web应用

eureka-server-peer1 和 eureka-server-peer2 是用来验证eureka 集群的,可以选择启动这两个服务,不启动eureka-server服务。

程序运行

按照上面的顺序依次运行。 Spring Boot的程序运行:mvn spring-boot:run ; nodejs 程序运行:npm start

spring-boot-admin-server 的控制台会有异常抛出,是因为nodejs的 bookservice程序无法接入spring boot admin的监控的。 ---- 尽管restful的微服务号称技术平台无关,然而一旦选择了某些技术栈,基本也就限制了使用某个语言和某个技术。

测试spring-apigateway

spring-apigateway 作为eureka的客户端结合zuul proxy的反向代理,为多个微服务提供一个单一的访问节点。 访问http://localhost:8080/bookmarks/jlong/bookmarks (结果同http://localhost:9098/jlong/bookmarks 完全一致)

[
	{
		"userId": "jlong",
		"id": 2,
		"href": "http://some-other-hostjlong.com/",
		"description": "A description for jlong's link",
		"label": "jlong"
	}
]

访问http://localhost:8080/books 反向代理至nodejs-bookservice的服务:http://localhost:3001/books

[
	{
		"bookname": "Nodejs Web Development",
		"author": "David Herron"
	},
	{
		"bookname": "Mastering Web Application Development with Express ",
		"author": "Alexandru Vlăduțu"
	}
]

测试nodejs

nodejs 采用eureka-js-client 组件获取/注册微服务。这里nodejs-web只作为服务的消费方,接入eureka server,消费上游的服务并展示给客户端(浏览器)。 查看nodejs-web作为eureka client 获取到注册的服务信息,通过向服务直接发起request来获取数据并展示。访问:http://localhost:3000 即可看如下显示: 这里写图片描述

查看服务注册情况:

打开http://localhost:8761/ eureka 服务 instance信息的获取主要通过下面的链接:

nodejs 使用eureka-js-client 来配置服务的instance信息,需要配置的信息更多,也更直观的反应了instance的信息;和通过连接(http://localhost:8761/eureka/apps)查到的基本一致。

nodejs的微服务app,在eureka的client的配置中最好保持app,vipAddress(secureVipAddress 一般不会用上)一致。

经测试发现,Spring Boot / Cloud Netflix 技术栈开发的apigateway,采用Zuul Reverse Proxy 反向代理的时候,必须app 和 vipAddress设置一致。 多个instance通过instanceId来区分。

监控Spring Boot服务

通过http://localhost:8088 可以进入Spring Boot的服务列表;选中服务点击Details可以查看详细信息。

调用链路跟踪

通过http://localhost:9411 查询服务间调用情况

About

此库为https://github.com/choelea/spring-cloud-netflix 的演进版,在此基础上增加了全链路跟踪,服务监控及跨服务日志跟踪

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published