具有ocelot和consul的动态服务名称

时间:2018-12-30 10:46:53

标签: consul service-discovery api-gateway ocelot

我在Consul和服务发现中使用了Ocelot和API网关。 我在领事馆中使用动态名称注册服务,例如:service.name.1234和service.name.5678

此服务是静态的,根本不能扩展

由于我正在使用Ocelot,因此我希望能够将请求路由到所需的服务,但是由于名称是动态的,因此我需要使用查询字符串参数作为服务名称

示例:http://myapp.com/service/1234 应该重定向到名称为service.name.1234的容器

有没有办法同时使用这两种产品?还是其他产品?

谢谢

1 个答案:

答案 0 :(得分:0)

我一直在为自己寻找相同的解决方案,但在 GitHub 上只找到了一个 comment,这对我帮助很大

因此,您需要创建自定义中间件来重写 Ocelot 的 DownstreamRoute:

public static async Task InvokeAsync(HttpContext httpContext, Func<Task> next)
    {
        
        var downstreamRoute = httpContext.Items.DownstreamRoute();

        var yourServiceName = //get query string parameter from httpContext;

        //rewrite any parameter that you want
        httpContext.Items.UpsertDownstreamRoute(
            new DownstreamRoute(
                downstreamRoute.Key,
                downstreamRoute.UpstreamPathTemplate,
                downstreamRoute.UpstreamHeadersFindAndReplace,
                downstreamRoute.DownstreamHeadersFindAndReplace,
                downstreamRoute.DownstreamAddresses,
                tenantServiceName,
                ...
            ));
    }

然后在 Startup.cs 中调用它:

public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
    // some other code

    var configuration = new OcelotPipelineConfiguration
            {
                PreQueryStringBuilderMiddleware = async (ctx, next) =>
                {
                    await RouteContextRetrieverMiddleware.InvokeAsync(ctx, next);

                    await next.Invoke();
                }
            };

            app.UseOcelot(configuration).GetAwaiter().GetResult();
}