ibcadmin 发表于 2019-8-13 18:14:11

.net core使用ocelot---第七篇 服务发现

<p><strong>简介</strong></p>
<p>  .net core使用ocelot---第一篇 简单使用<br />  .net core使用ocelot---第二篇 身份验证使用 <br />  .net core使用ocelot---第三篇 日志记录 <br />  .net core使用ocelot---第四篇 限流熔断 <br />  .net core使用ocelot---第五篇 服务质量 <br />  .net core使用ocelot---第六篇 负载均衡 </p>
<p>         本文我们介绍用Spring Cloud Eureka Server介绍Ocelot的服务发现模块。</p>
<p><strong>什么是服务发现</strong></p>
<p>服务发现是自动检测这些设备在盘算机网络上提供的设备和服务。服务发现协议(SDP)是帮助完成服务发现的网络协议。服务发现旨在减少用户的配置工作。</p>
<p>在Ocelot中我们可以使用许多的服务发现,比如Consul, Eureka等等。本文我使用Eureka进行介绍。Ocelot使用Steeltoe与Eureka进行通信,Eureka是一个开源项目,使.NET开发人员可以或许在云上构建弹性微服务时能实现满足行业尺度的最佳实践。</p>
<p>我将使用Ocelot的7.1.0-unstable0011版本向您展示此功能。</p>
<p><strong>Step1</strong></p>
<p>         首先创建两个API服务,一个是默认的ASP.NET Core Web API项目。在API网关发现我们的API服务之前,我们需要在Eureka服务上注册。</p>
<p>         在appsettings.json添加一些配置</p>

1.    "spring": {
2.      "application": {
3.            "name": "service-a"
4.      }
5.    },
6.    "eureka": {
7.      "client": {
8.            "serviceUrl": "http://192.168.0.107:8761/eureka/",
9.            "shouldFetchRegistry": true,
10.            "validateCertificates": false
11.      },
12.      "instance": {
13.            "port": 9001,
14.            "instanceId": "192.168.0.103:9001",
15.            "hostName": "192.168.0.103",
16.            "healthCheckUrlPath": "/api/values/healthcheck",
17.            "statusPageUrlPath": "/api/values/info"                  
18.      }
19.    }

<p><strong>注意</strong></p>
<ol>
<li>Service-a 是Ocelot发现服务的重要标志。</li>
<li>ServiceUrl是Eureka Server的端点。</li>
<li>获得更多信息,看这里</li>
</ol>
<p>  添加服务发现必要的代码</p>

public class Startup
{
    public Startup(IConfiguration configuration)
    {
      Configuration = configuration;
    }

    public IConfiguration Configuration { get; }

    public void ConfigureServices(IServiceCollection services)
    {
      services.AddDiscoveryClient(Configuration);
      services.AddMvc();
    }

    public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
      if (env.IsDevelopment())
      {
            app.UseDeveloperExceptionPage();
      }

      app.UseDiscoveryClient();
      app.UseMvc();
    }
}

<p>  在这里,我将使用三个API服务来演示,两个API服务名称service-a具有不同的端口(9001和9003),一个API服务名称service-b。</p>
<p><strong>Step2</strong></p>
<p>         新建一个APIGateway项目,添加名为ocelot.json的配置文件。</p>

{
    "ReRoutes": [
      {
            "DownstreamPathTemplate": "/api/values",
            "DownstreamScheme": "http",
            "UpstreamPathTemplate": "/a",
            "UseServiceDiscovery": true,
            "ServiceName": "service-a",
            "UpstreamHttpMethod": [ "Get" ],
            "QoSOptions": {
                "ExceptionsAllowedBeforeBreaking": 3,
                "DurationOfBreak": 1000,
                "TimeoutValue": 5000
            },
            "FileCacheOptions": { "TtlSeconds": 15 },
            "LoadBalancerOptions": {
                "Type": "RoundRobin"
            }
      },
      {
            "DownstreamPathTemplate": "/api/values",
            "DownstreamScheme": "http",
            "UpstreamPathTemplate": "/b",
            "UseServiceDiscovery": true,
            "ServiceName": "service-b",
            "UpstreamHttpMethod": [ "Get" ],
            "QoSOptions": {
                "ExceptionsAllowedBeforeBreaking": 3,
                "DurationOfBreak": 1000,
                "TimeoutValue": 5000
            },
            "FileCacheOptions": { "TtlSeconds": 15 }
      }
    ],
    "GlobalConfiguration": {
      "RequestIdKey": "OcRequestId",
      "AdministrationPath": "/administration",
      "ServiceDiscoveryProvider": { "Type": "Eureka" }
    }
}

<p>  这里有几点需要注意。</p>
<p>  对于ReRoutes</p>
<ol>
<li>将UseServiceDiscovery设为true。</li>
<li>将ServiceName值设为在API服务里定义的服务名称。</li>
<li>不用指明DownstreamHostAndPorts的值。</li>
<li>将LoadBalancerOptions设成RoundRobin。</li>
</ol>
<p>  对于GlobalConfiguration</p>
<p>         设置ServiceDiscoveryProvider的Type为Eureka。这是使用Eureka至关重要的配置。</p>
<p>         回到Program.cs,我们需要让Ocelot可以使用。</p>

public class Program
{
    public static void Main(string[] args)
    {
      BuildWebHost(args).Run();
    }

    public static IWebHost BuildWebHost(string[] args) =>
      WebHost.CreateDefaultBuilder(args)
         .UseUrls("http://*:9000")
         .ConfigureAppConfiguration((hostingContext, config) =>
            {
                config
                  .SetBasePath(hostingContext.HostingEnvironment.ContentRootPath)                        
                  .AddJsonFile("ocelot.json")
                  .AddEnvironmentVariables();
            })
         .ConfigureServices(s =>
            {
                s.AddOcelot();
            })
            .Configure(a =>
            {
                a.UseOcelot().Wait();
            })
            .Build();
}

<p><strong>Step3</strong></p>
<p>         让Eureka跑起来。</p>
<p><div align="center"></div></p>
<p>  如你所见,Eureka服务启动起来了,但是没有可以使用的实例。</p>
<p><strong>注意</strong></p>
<p>         为了在你的电脑上跑Eureka服务,你可以按照下面的步骤实验。</p>
<ol>
<li>安装Java 8 的JDK</li>
<li>安装Maven3.X</li>
<li>复制Spring Cloud Samples Eureka 代码库(https://github.com/spring-cloud-samples/eureka.git)</li>
<li>转到eureka服务的目次(eureka)并使用mvn spring-boot:run启动它</li>
</ol>
<p><strong>Step4</strong></p>
<p>         我们如何注册我们的服务?只需运行我们的项目,我们就会得到service-a实例。</p>
<p>         当运行我们的API服务,你就会发现service-a 运行在Eureka 服务里了</p>
<p> <div align="center"></div></p>
<p>  好了,启动我们的APIGateway,不幸的是,当我们运行起项目。</p>
<p><div align="center"></div></p>
<p>  查看非常信息,我们忘了在APIGateway项目中配置Eureka。在appsettings.json添加下面的配置。</p>

"spring": {
    "application": {
      "name": "service-gw"
    }
},
"eureka": {
    "client": {
"serviceUrl": "http://192.168.0.107:8761/eureka/",
      "shouldRegisterWithEureka": false,
      "validateCertificates": false
    },
    "instance": {
      "port": 9000,
      "instanceId": "192.168.0.103:9000",
      "hostName": "192.168.0.103"
    }
}

<p>  重新启动APIGateway,终于正常了。</p>
<p>  <div align="center"></div></p>
<p>  通过APIGat访问service-a </p>
<p><div align="center"></div></p>
<p>  通过APIGateway访问未启动的service-b</p>
<p><div align="center"></div></p>
<p>  毫无疑问我们不可能访问service-b</p>
<p>  启动后</p>
<p><div align="center"></div></p>
<p>  再次启动</p>
<p><div align="center"></div></p>
<p>  最后注册另一个service-a</p>
<p><div align="center"></div></p>
<p>  访问service-a你得到的效果有时来自9001,有时来自9003 。因为我们负载均衡算法设为RoundRobin。</p>
<p><div align="center"></div></p>
<p>  当我们制止service-a的一个服务,我们依然可以访问,但是停止的那个服务不能访问。</p>
<p>  源码在此</p>
<p><strong>总结</strong></p>
<p>         本文介绍了Ocelot使用Eureka实现服务发现的简单示例。当让另有consul也可以实现服务发现,下篇介绍。</p><br>来源:<a href="https://www.cnblogs.com/xlxr45/p/11321786.html" target="_blank">https://www.cnblogs.com/xlxr45/p/11321786.html</a><br>免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
页: [1]
查看完整版本: .net core使用ocelot---第七篇 服务发现