.NET Core 微服务架构 Steeltoe 使用(基于 Spring Cloud)
2018-06-12

阅读目录:

  • 1. Spring Cloud Eureka 注册服务及调用
  • 2. Spring Cloud Hystrix 断路器
  • 3. Spring Cloud Hystrix 指标监控
  • 4. Spring Cloud Config 配置中心

现在主流的开发平台是微服务架构,在众多的微服务开源项目中,Spring Cloud 非常具有代表性,但实现平台是基于 Java,那在 .NET Core 平台下,如何兼容实现 Spring Cloud 呢?答案就是 Steeltoe,或者你也可以自行实现,因为 Spring Cloud 各组件基本都是基于 REST HTTP 接口实现,你可以使用任何语言实现兼容。

关于 Steeltoe 的官方介绍:

Steeltoe is an open source project that enables .NET developers to implement industry standard best practices when building resilient microservices for the cloud. The Steeltoe client libraries enable .NET Core and .NET Framework apps to easily leverage Netflix Eureka, Hystrix, Spring Cloud Config Server, and Cloud Foundry services.

这边就不翻译了,需要注意的几点:

  • Netflix Eureka:服务注册中心,实现服务注册,以及服务发现调用。
  • Hystrix:断路器,实现熔断处理。
  • Spring Cloud Config Server:分布式配置中心,主要是读取配置中心的信息。
  • Cloud Foundry:开源 PaaS 云平台,Steeltoe 基本都运行在此平台上,运行在其他平台兼容不好。

另外,Steeltoe 不仅支持 .NET Core,还支持 .NET Framework(具体 ASP.NET 4.x 版本)。

1. Spring Cloud Eureka 注册服务及调用

项目代码:https://github.com/yuezhongxin/Steeltoe.Samples/tree/master/Discovery-CircuitBreaker/AspDotNetCore

首先,需要部署一个或多个 Spring Cloud Eureka 服务注册中心,可以使用 Spring Boot 很方便进行实现,这边就不说了。

创建一个 APS.NET Core 应用程序(2.0 版本),然后 Nuget 安装程序包:

> install-package Pivotal.Discovery.ClientCore

appsettings.json配置文件中,增加下面配置:

{
  "spring": {
    "application": {
      "name": "fortune-service"
    }
  },
  "eureka": {
    "client": {
      "serviceUrl": "http://192.168.1.32:8100/eureka/",
      "shouldFetchRegistry": true, //Enable or disable registering as a service
      "shouldRegisterWithEureka": true, //Enable or disable discovering services
      "validate_certificates": false
    },
    "instance": {
      //"hostName": "localhost",
      "port": 5000
    }
  }}

这样我们启动 APS.NET Core 应用程序,就会将fortune-service服务注册到 Eureka 中了。

EUREKA-CLIENT是用 Spring Boot 实现的一个服务,下面我们测试FORTUNE-SERVICE如何调用EUREKA-CLIENT

创建一个IEurekaClientService接口:

public interface IEurekaClientService{    Task<string> GetServices();
}

然后再创建IEurekaClientService接口的实现EurekaClientService


  1. public class EurekaClientService : IEurekaClientService

  2. {

  3.    DiscoveryHttpClientHandler _handler;

  4.    private const string GET_SERVICES_URL = "http://eureka-client/home";

  5.    private ILogger<EurekaClientService> _logger;

  6.    public EurekaClientService(IDiscoveryClient client, ILoggerFactory logFactory = null)

  7.        :base(options)

  8.    {

  9.        _handler = new DiscoveryHttpClientHandler(client, logFactory?.CreateLogger<DiscoveryHttpClientHandler>());

  10.        _logger = logFactory?.CreateLogger<EurekaClientService>();

  11.    }

  12.    public async Task<string> GetServices()

  13.    {

  14.        _logger?.LogInformation("GetServices");

  15.        var client = GetClient();

  16.        return await client.GetStringAsync(GET_SERVICES_URL);

  17.    }

  18.    private HttpClient GetClient()

  19.    {

  20.        var client = new HttpClient(_handler, false);

  21.        return client;

  22.    }

  23. }

然后创建一个FortunesController


  1. [Route("api")]

  2. public class FortunesController : Controller

  3. {

  4.    private IEurekaClientService _eurekaClientService;

  5.    private ILogger<FortunesController> _logger;

  6.    public FortunesController(IEurekaClientService eurekaClientService, ILogger<FortunesController> logger)

  7.    {

  8.        _eurekaClientService = eurekaClientService;

  9.        _logger = logger;

  10.    }

  11.    // GET: api/services

  12.    [HttpGet("services")]

  13.    public async Task<IActionResult> GetServices()

  14.    {

  15.        _logger?.LogInformation("api/services");

  16.        return Ok(await _eurekaClientService.GetServices());

  17.    }

  18. }

最后在Startup.cs中,添加如下配置:


  1. public class Startup

  2. {

  3.    public Startup(IConfiguration configuration)

  4.    {

  5.        Configuration = configuration;

  6.    }

  7.    public IConfiguration Configuration { get; private set; }

  8.    // This method gets called by the runtime. Use this method to add services to the container.

  9.    public void ConfigureServices(IServiceCollection services)

  10.    {

  11.        // 加载服务注册配置

  12.        services.AddDiscoveryClient(Configuration);

  13.        // Add framework services.

  14.        services.AddMvc();

  15.    }

  16.    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.

  17.    public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, IApplicationLifetime lifetime)

  18.    {

  19.        app.UseStaticFiles();

  20.        app.UseMvc();

  21.        // 启动服务注册

  22.        app.UseDiscoveryClient();

  23.    }

  24. }

然后重新启动服务,执行命令:

$ curl http://192.168.1.3:5000/api/servicesServices(get all by DiscoveryClient): [eureka-client, fortune-service]%

可以看到,调用是成功的,实际调用的是EUREKA-CLIENT服务的接口,获取的是 Eureka 注册中心,所有的注册服务信息。

ASP.NET 4.x 版本的实现,和上面的类似,这边就不叙述了,可以查看项目代码:https://github.com/yuezhongxin/Steeltoe.Samples/tree/master/Discovery-CircuitBreaker/AspDotNet4

2. Spring Cloud Hystrix 断路器

项目代码:https://github.com/yuezhongxin/Steeltoe.Samples/tree/master/Configuration/AspDotNetCore

Spring Cloud Hystrix 的实现,需要我们对上面的项目进行改造下。

IEurekaClientService增加一个GetServicesWithHystrix接口:

public interface IEurekaClientService{    Task<string> GetServices();    Task<string> GetServicesWithHystrix();
}

然后对其进行实现:


  1. public class EurekaClientService : HystrixCommand<string>, IEurekaClientService

  2. {

  3.    DiscoveryHttpClientHandler _handler;

  4.    private const string GET_SERVICES_URL = "http://eureka-client/home";

  5.    private ILogger<EurekaClientService> _logger;

  6.    public EurekaClientService(IHystrixCommandOptions options, IDiscoveryClient client, ILoggerFactory logFactory = null)

  7.        :base(options)

  8.    {

  9.        _handler = new DiscoveryHttpClientHandler(client, logFactory?.CreateLogger<DiscoveryHttpClientHandler>());

  10.        IsFallbackUserDefined = true;

  11.        _logger = logFactory?.CreateLogger<EurekaClientService>();

  12.    }

  13.    public async Task<string> GetServices()

  14.    {

  15.        _logger?.LogInformation("GetServices");

  16.        var client = GetClient();

  17.        return await client.GetStringAsync(GET_SERVICES_URL);

  18.    }

  19.    public async Task<string> GetServicesWithHystrix()

  20.    {

  21.        _logger?.LogInformation("GetServices");

  22.        var result = await ExecuteAsync();

  23.        _logger?.LogInformation("GetServices returning: " + result);

  24.        return result;

  25.    }

  26.    protected override async Task<string> RunAsync()

  27.    {

  28.        _logger?.LogInformation("RunAsync");

  29.        var client = GetClient();

  30.        var result = await client.GetStringAsync(GET_SERVICES_URL);

  31.        _logger?.LogInformation("RunAsync returning: " + result);

  32.        return result;

  33.    }

  34.    protected override async Task<string> RunFallbackAsync()

  35.    {

  36.        _logger?.LogInformation("RunFallbackAsync");

  37.        return await Task.FromResult("This is a error(服务断开,稍后重试)!");

  38.    }

  39.    private HttpClient GetClient()

  40.    {

  41.        var client = new HttpClient(_handler, false);

  42.        return client;

  43.    }

  44. }

然后还需要在Startup.cs中添加注入:

public void ConfigureServices(IServiceCollection services){   
     // Register FortuneService Hystrix command
    services.AddHystrixCommand<IEurekaClientService, EurekaClientService>("eureka-client", Configuration);
}

然后重启服务,执行命令:

$ curl http://192.168.1.3:5000/api/services/hystrixServices(get all by DiscoveryClient): [eureka-client, fortune-service]%

Hystrix 断路器的作用,体现在调用服务出现问题不能访问,这边可以进行熔断处理,我们把eureka-client服务停掉,然后再进行访问测试:

$ curl http://192.168.1.3:5000/api/services/hystrixThis is a error(服务断开,稍后重试)!%

可以看到,Hystrix 起到了作用。

ASP.NET 4.x 版本的实现,和上面的类似,这边就不叙述了,可以查看项目代码:https://github.com/yuezhongxin/Steeltoe.Samples/tree/master/Discovery-CircuitBreaker/AspDotNet4

3. Spring Cloud Hystrix 指标监控

项目代码:https://github.com/yuezhongxin/Steeltoe.Samples/tree/master/Discovery-CircuitBreaker/AspDotNetCore

在实际应用中,我们需要对 Hystrix 断路器进行监控,比如熔断请求有多少等等,Spring Cloud 中的实现有 Turbine 进行收集,数据展示的话使用 Hystrix Dashboard。

这边需要我们先创建一个 Hystrix Dashboard 项目,我使用的 Spring Boot 进行实现,这边就不叙述了。

我们需要再对上面的项目进行改造,在Startup.cs中添加配置,以启动 Hystrix 指标监控。


  1. public class Startup

  2. {

  3.    public void ConfigureServices(IServiceCollection services)

  4.    {

  5.        // Add Hystrix metrics stream to enable monitoring

  6.        services.AddHystrixMetricsStream(Configuration);

  7.    }

  8.    // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.

  9.    public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, IApplicationLifetime lifetime)

  10.    {

  11.        // Startup Hystrix metrics stream

  12.        app.UseHystrixMetricsStream();

  13.    }

  14. }

另外,还需要配置下Fortune-Teller-Service.csproj

<ItemGroup Condition="'$(BUILD)' == 'LOCAL'">
    <PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsStreamCore" Version="2.0.0" />
    <PackageReference Include="RabbitMQ.Client" Version="5.0.1" />
  </ItemGroup><ItemGroup Condition="'$(BUILD)' == ''">
  <PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsEventsCore" Version="2.0.0" />
  <PackageReference Include="System.Threading.ThreadPool" Version="4.3.0" /></ItemGroup>

然后重启项目,然后浏览器打开:http://192.168.1.3:5000/hystrix/hystrix.stream

会看到不断实时刷新的 Hystrix 指标监控数据了,但显示并不友好,我们还需要在仪表盘中显示。

浏览器打开 Hystrix Dashboard(地址:http://192.168.1.31:8170/hystrix),然后在输入框中输入:http://192.168.1.3:5000/hystrix/hystrix.stream

然后点击 Monitor Stream 按钮,就可以看到 Hystrix 图形化监控了(多次请求http://192.168.1.3:5000/api/services/hystrix,以便测试):

另外,ASP.NET 4.x 版本配置的话,访问http://192.168.1.3:5000/hystrix/hystrix.stream会报 404 错误,原因是 ASP.NET 4.x 版本暂不支持 Cloud Foundry 以外的平台,详情参见

4. Spring Cloud Config 配置中心

项目代码:https://github.com/yuezhongxin/Steeltoe.Samples/tree/master/Configuration/AspDotNetCore

需要注意的是,这边只测试 Steeltoe 读取配置中心数据,需要先开发一个 Spring Cloud Config Server 配置中心服务,这边就不叙述了。

我使用的 GitHub 作为配置中心仓库,xishuai-config-dev.yml配置详情:

info:  profile: dev  name: xishuai7  password: '{cipher}AQAc+v42S+FW7H5DiATfeeHY887KLwmeBq+cbXYslcQTtEBNL9a5FKbeF1qDpwrscWtGThPsbb0QFUMb03FN6yZBP2ujF29J8Fvm89igasxA7F67ohJgUku5ni9qOsMNqm5juexCTGJvzPkyinymGFYz55MUqrySZQPbRxoQU9tcfbOv9AH4xR/3DPe5krqjo3kk5pK6QWpH37rBgQZLmM7TWooyPiRkuc5Wn/1z6rQIzH5rCLqv4C8J16MAwgU1W+KTrHd4t8hIDAQG9vwkL9SYAvlz38HMKL9utu2g4c9jhAJE/H0mePlp+LDrWSgnC+R+nyH91niaUlwv3wsehP0maYCgEsTJn/3vsNouk5VCy4IGGZbkPubuJM6hE8RP0r4='

注:对password进行了加密处理。

创建一个 APS.NET Core 应用程序(2.0 版本),然后 Nuget 安装程序包:

> install-package Steeltoe.Extensions.Configuration.ConfigServerCore

appsettings.json配置文件中,增加下面配置:

{
  "spring": {
    "application": {
      "name": "xishuai-config" //配置文件名称
    },
    "cloud": {
      "config": {
        "uri": "http://manager1:8180", //指向配置中心地址
        "env": "dev" //配置中心profile
      }
    }
  }}

然后创建一个ConfigServerData模型:


  1. public class ConfigServerData

  2. {

  3.    public Info Info { get; set; }

  4. }

  5. public class Info

  6. {

  7.    public string Profile { get; set; }

  8.    public string Name { get; set; }

  9.    public string Password { get; set; }

  10. }

增加HomeController访问:


  1. public class HomeController : Controller

  2. {

  3.    private IOptionsSnapshot<ConfigServerData> IConfigServerData { get; set; }

  4.    private IConfigurationRoot Config { get; set; }

  5.    public HomeController(IConfigurationRoot config, IOptionsSnapshot<ConfigServerData> configServerData)

  6.    {

  7.        if (configServerData != null)

  8.            IConfigServerData = configServerData;

  9.        Config = config;

  10.    }

  11.    public IActionResult Error()

  12.    {

  13.        return View();

  14.    }

  15.    public ConfigServerData ConfigServer()

  16.    {

  17.        var data = IConfigServerData.Value;

  18.        return data;

  19.    }

  20.    public IActionResult Reload()

  21.    {

  22.        if (Config != null)

  23.        {

  24.            Config.Reload();

  25.        }

  26.        return View();

  27.    }

  28. }

Startup.cs中增加配置:


  1. public class Startup

  2. {

  3.    public Startup(IHostingEnvironment env)

  4.    {

  5.        var builder = new ConfigurationBuilder()

  6.            .SetBasePath(env.ContentRootPath)

  7.            .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)

  8.            .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)

  9.            .AddEnvironmentVariables()

  10.            .AddConfigServer(env);

  11.        Configuration = builder.Build();

  12.    }

  13.    public IConfiguration Configuration { get; set; }

  14.    // This method gets called by the runtime. Use this method to add services to the container.

  15.    public void ConfigureServices(IServiceCollection services)

  16.    {

  17.        services.AddOptions();

  18.        // Optional:  Adds IConfiguration and IConfigurationRoot to service container

  19.        services.AddConfiguration(Configuration);

  20.        // Adds the configuration data POCO configured with data returned from the Spring Cloud Config Server

  21.        services.Configure<ConfigServerData>(Configuration);

  22.    }

  23. }

启动项目,然后执行命令:

$ curl http://192.168.1.3:5000/home/ConfigServer{"info":{"profile":"dev","name":"xishuai7","password":"xishuai123"}}

当配置中心数据更新了,可以访问http://192.168.1.3:5000/home/Reload进行刷新配置。

ASP.NET 4.x 版本的实现,和上面的类似,这边就不叙述了,可以查看项目代码:https://github.com/yuezhongxin/Steeltoe.Samples/tree/master/Configuration/AspDotNet4

参考资料:



原文地址: https://www.cnblogs.com/xishuai/p/steeltoe-and-spring-cloud-eureka-config-hystrix.html