Spring Sidecar如何与Docker配合使用

时间:2016-04-21 07:50:51

标签: spring-cloud netflix-eureka spring-cloud-netflix

我们有一个sidecar应用程序,使我们能够使用Eureka注册我们的node.js应用程序以启用服务发现。

我们的边车应用配置如下:

server:
  port: 9000

spring:
  application:
    name: session-service

sidecar:
  port: 3000
  health-url: http://sessionServiceNode:${sidecar.port}/health.json

eureka:
  client:
    serviceUrl:
      defaultZone: http://discoveryService:8761/eureka/
  instance:
    lease-renewal-interval-in-seconds: 5
    prefer-ip-address: true

根据配置,我们的节点应用程序在3000属性定义的端口sidecar.port上运行,我们的sidecar应用程序应按9000的端口server.port运行

我们已在节点应用程序中添加了一个端点,以允许sidecar检查应用程序的运行状况(sidecar.health-url)。主机名sessionServiceNode是我们为运行节点应用程序的容器指定的别名的名称。

我们的Eureka服务在一个单独的容器中运行,该容器也通过别名discoveryService链接到sidecar应用程序容器。

我们有一个单独的测试spring引导应用程序,它运行在一个单独的容器中,该容器是会话服务的使用者。此容器仅链接到发现服务容器。

sidecar应用程序按照预期向Eureka注册

enter image description here

测试服务使用两种形式的会话服务查找。一个使用假装客户端:

@FeignClient(value = "session-service") // name of our registered service in eureka
interface SessionServiceClient {

    @RequestMapping(value = "/document/get/24324", method = GET)
    String documentGetTest();

}

另一种方法使用更程序化的查找:

@Autowired
private DiscoveryClient discoveryClient;

...
discoveryClient.getInstances("session-service");

当我们向测试服务发出请求时,测试服务会查找会话服务,但是eureka提供给我们的实例信息的URI为http://172.17.0.5:3000,这是不正确的。 172.17.0.5是sidecar应用程序容器的IP地址,但端口3000是运行节点应用程序的位置?

应该期望看到eureka使用会话服务端口(http://172.17.0.5:9000)返回会话服务容器的位置,然后sidecar执行“转发”#39;通过zuul代理到我们的节点应用程序(http://172.17.0.6:3000)?或者Eureka应该直接向我们提供节点应用程序的位置吗?

我在下面的Eureka中包含了会话服务实例信息:

<?xml version="1.0" encoding="UTF-8"?>
<application>
   <name>SESSION-SERVICE</name>
   <instance>
      <hostName>172.17.0.5</hostName>
      <app>SESSION-SERVICE</app>
      <ipAddr>172.17.0.5</ipAddr>
      <status>UP</status>
      <overriddenstatus>UNKNOWN</overriddenstatus>
      <port enabled="true">3000</port>
      <securePort enabled="false">443</securePort>
      <countryId>1</countryId>
      <dataCenterInfo class="com.netflix.appinfo.InstanceInfo$DefaultDataCenterInfo">
         <name>MyOwn</name>
      </dataCenterInfo>
      <leaseInfo>
         <renewalIntervalInSecs>5</renewalIntervalInSecs>
         <durationInSecs>90</durationInSecs>
         <registrationTimestamp>1461223810081</registrationTimestamp>
         <lastRenewalTimestamp>1461224812429</lastRenewalTimestamp>
         <evictionTimestamp>0</evictionTimestamp>
         <serviceUpTimestamp>1461223810081</serviceUpTimestamp>
      </leaseInfo>
      <metadata class="java.util.Collections$EmptyMap" />
      <homePageUrl>http://c892e0c03cf4:3000/</homePageUrl>
      <statusPageUrl>http://c892e0c03cf4:9000/info</statusPageUrl>
      <healthCheckUrl>http://c892e0c03cf4:9000/health</healthCheckUrl>
      <vipAddress>session-service</vipAddress>
      <isCoordinatingDiscoveryServer>false</isCoordinatingDiscoveryServer>
      <lastUpdatedTimestamp>1461223810081</lastUpdatedTimestamp>
      <lastDirtyTimestamp>1461223033045</lastDirtyTimestamp>
      <actionType>ADDED</actionType>
   </instance>
</application>

修改

查看代码后,Eureka分别使用从InetAddress.getLocalHost().getHostAddress()InetAddress.getLocalHost().getHostName()返回的主机信息来确定实例的地址。这就是我们获取边车容器的IP地址的原因。我们有什么方法可以覆盖这种行为吗?

2 个答案:

答案 0 :(得分:3)

因此,通过它的外观,Sidecar假设spring boot sidecar应用程序和非jvm应用程序在同一主机上运行。在我们的场景中,我们在单独的容器中运行我们的sidecar jvm应用程序的一个容器,以及我们的node.js应用程序的一个容器。理论上我们可以将两个应用程序都运行在同一个容器中,但这违反了Docker的每个容器都有一个unix进程的最佳实践。

为了实现这一点,我们覆盖了EurekaInstanceConfigBean,它允许我们控制为实例选择的主机名和IP地址。在这种情况下,我们委托inetUtils类并从主机名(通过docker链接的非jvm应用程序的别名)中查找IP地址。我们使用spring @ConfigurationProperties来控制application.yml配置文件中的主机名/端口。

SessionServiceSidecar.java

@Component
@ConfigurationProperties
public class SessionServiceSidecarProperties {

    @Value("${sidecar.hostname}")
    private String hostname;

    @Value("${sidecar.port}")
    private Integer port;

    public String getHostname() {
        return hostname;
    }

    public Integer getPort() {
        return port;
    }

}

SessionServiceApp.java

@SpringBootApplication
@EnableSidecar
@EnableDiscoveryClient
@Configuration
@ComponentScan
@EnableConfigurationProperties
public class SessionServiceApp {

    private @Autowired SessionServiceSidecarProperties properties;

    public static void main(String[] args) {
        SpringApplication.run(SessionServiceApp.class, args);
    }

    @Bean
    public EurekaInstanceConfigBean eurekaInstanceConfigBean(InetUtils inetUtils) {

        final String sidecarHostname = properties.getHostname();
        final Integer sidecarPort = properties.getPort();

        try {

            final EurekaInstanceConfigBean instance = new EurekaInstanceConfigBean(inetUtils);
            instance.setHostname(sidecarHostname);
            instance.setIpAddress(inetUtils.convertAddress(InetAddress.getByName(sidecarHostname)).getIpAddress());
            instance.setNonSecurePort(sidecarPort);
            return instance;

        } catch(UnknownHostException e) {
            throw new IllegalStateException("Could not resolve IP address of sidecar application using hostname: " + sidecarHostname);
        }

    }

}

application.yml

spring:
  application:
    name: session-service

server:
  port: 9000

sidecar:
  hostname: sessionServiceNode
  port: 3000
  health-url: http://sessionServiceNode:${sidecar.port}/health.json

eureka:
  client:
    serviceUrl:
      defaultZone: http://discoveryService:8761/eureka/
  instance:
    lease-renewal-interval-in-seconds: 5
    prefer-ip-address: true

希望Spring工作人员允许我们在将来通过sidecar.hostname属性控制sidecar应用程序的主机名以及端口。

希望这有帮助!

答案 1 :(得分:0)

Spring Cloud正在挑选第一个非环回IP地址。你可以做其中的一件事。

一:忽略您不想选择的网络接口。文档here

spring:
  cloud:
    inetutils:
      ignoredInterfaces:
        - docker0
        - veth.*

或者两个:显式设置eureka注册的ipaddress或主机名(如果你在任何地方使用相同的docker别名。对于hostname set eureka.instance.hostname=sessionServiceNode并删除prefer-ip-address=true选项。对于ip addr,{{1 }}