20

我们的服务结构应用程序包括一个无状态服务,该服务通过OwinCommunicationListener.

此服务的 ServiceManifest.Xml 指定服务端点<Endpoint Name="ServiceEndpoint" Type="Input" Protocol="http" Port="8090" />

然后可以通过http://localhost:8090/上的浏览​​器访问无状态服务

我们正在尝试做的是通过 ApplicationManifest 在同一个 Service Fabric 应用程序的不同端点上实例化此服务的多个实例。

导入我们的ServiceManifestImport服务包并允许在应用程序级别进行配置覆盖。我们无法以这种方式覆盖 ServiceEndpoint,只能覆盖 Settings.xml 中的值

<ServiceManifestImport>
  <ServiceManifestRef ServiceManifestName="FooServicePkg" ServiceManifestVersion="1.0.0" >
    <ConfigOverrides Name="Config">
      <Settings>
        <SectionName Name="MySettings">
        <Parameter Name="MySetting" Value="SomeValue">
      </Settings>
    </ConfigOverrides>
</ServiceManifestImport>

我们可以通过在下面指定多个Service节点来创建服务的命名实例DefaultServices

<DefaultServices>
  <Service Name="FooInstanceA">
    <StatelessService ServiceTypeName="FooType" InstanceCount="1" />
      <SingletonPartition />
    </StatelessService>
  </Service>
  <Service Name="FooInstanceB">
    <StatelessService ServiceTypeName="FooType" InstanceCount="1" />
      <SingletonPartition />
    </StatelessService>
  </Service>
</DefaultServices>

是否可以通过配置为每个服务实例指定配置覆盖?

我试图让服务实例在特定端口上侦听,方法是使用它们的服务名称来确定哪个端口,以便 FooInstanceA 在端口 8090 上侦听,而 FooInstanceB 在 8091 上侦听。

显然,Service Fabric 在部署期间发挥了作用,因为当 FooInstanceB 侦听的端口不是 ServiceEndpoint 配置中指定的端口时,该服务无法访问。

第一个原因是端点上没有设置DACL,通过运行解决;

netsh http add urlacl http://+:8091/ user=everyone listen=yes

这允许服务出现并在 Service Fabric Explorer 中显示健康,但是当我们使用http://localhost:8091/访问时,FooInstanceB 会响应 HTTP 503 错误

我们如何让服务实例监听不同的端口?

我希望这很清楚,谢谢。

4

4 回答 4

7

实现这一目标的选择并不多。这里有一些想法:

  1. 在一个应用程序中创建多个应用程序实例,而不是多个相同类型的服务。这将允许您使用应用程序参数来配置特定服务的行为。
  2. 在您的服务类型中创建多个配置包。每个配置包都将用于服务实例之一。确定将服务实例分配给哪个配置包需要是动态的,可能基于服务实例的名称?当然,这不是一个很好的选择,因为它将服务定义与将要创建的实例数量结合在一起。
  3. 自定义配置实现。也许让您的服务公开一个端点,允许您在部署后对其进行配置。或者让服务调用在激活时提供其配置的其他管理服务。
于 2016-04-29T20:43:23.293 回答
2

您还可以让 Service Fabric 自动分配端口,然后使用 Service Fabric 附带的反向代理。

于 2017-05-08T07:26:34.587 回答
0

我已经设法使用 ApplicationParameter xml 文件来做到这一点,并在 VSTS 中部署期间选择了正确的文件。例如,这是我用于部署到我的测试环境的 Cloud.xml。诀窍是第二行的 Name 参数。我已经使用此文档指定了端口:https ://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-how-to-specify-port-number-using-parameters

<?xml version="1.0" encoding="utf-8"?>
<Application xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Name="fabric:/DotNetCoreTest" xmlns="http://schemas.microsoft.com/2011/01/fabric">
  <Parameters>
    <Parameter Name="Web1_InstanceCount" Value="2" />
    <Parameter Name="ServiceEndpoint_PortNumber" Value="8909" />
  </Parameters>
</Application>

这是 Staging 的 xml 文件:Staging.xml

<?xml version="1.0" encoding="utf-8"?>
<Application xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Name="fabric:/DotNetCoreStaging" xmlns="http://schemas.microsoft.com/2011/01/fabric">
  <Parameters>
    <Parameter Name="Web1_InstanceCount" Value="2" />
    <Parameter Name="ServiceEndpoint_PortNumber" Value="8910" />
  </Parameters>
</Application>

使用此处描述的 Traefik 反向代理,我可以使用主机名访问我的服务。在 VSTS 中,我使用标记器来替换 ServiceManifest 中的主机名,并在部署期间替换 ApplicationManifest 中的 ApplicationTypeName。

这是我的服务清单:

<ServiceTypes>
    <!-- This is the name of your ServiceType. 
         This name must match the string used in RegisterServiceType call in Program.cs. -->
    <StatelessServiceType ServiceTypeName="Web1Type">
      <Extensions>
        <Extension Name="Traefik">
          <Labels xmlns="http://schemas.microsoft.com/2015/03/fabact-no-schema">
            <Label Key="traefik.frontend.rule.hostname">Host: #{HostName}#</Label>
            <Label Key="traefik.expose">true</Label>
            <Label Key="traefik.frontend.passHostHeader">true</Label>
          </Labels>
        </Extension>
      </Extensions>
    </StatelessServiceType>
  </ServiceTypes>
于 2018-04-20T14:48:59.570 回答
0

我认为在 SF 集群前面有一个 url 重写服务是一个非常好的主意。

这可以为您提供多个端点并进行 url 重写、防火墙/黑名单、https 等。

另一种方法是将服务打包为 lib 或 Nuget,并使用不同的服务清单创建您需要的 N 个服务。

于 2017-05-25T22:29:21.037 回答