使用 FileBasedInstanceDiscovery 的 hystrix-dashboard 涡轮机的问题
Posted
技术标签:
【中文标题】使用 FileBasedInstanceDiscovery 的 hystrix-dashboard 涡轮机的问题【英文标题】:Problems with hystrix-dashboard turbine using FileBasedInstanceDiscovery 【发布时间】:2019-10-01 20:41:15 【问题描述】:我正在尝试使用涡轮机设置 hystrix-dashboard。我没有使用 Eureka,而是想使用 FileBasedInstanceDiscovery。我正在尝试配置它,但遵循在线文档似乎不起作用。它总是尝试使用 Eureka 发现客户端。我尝试从我的 pom 中排除尤里卡,但后来它回落到另一个发现客户端 CommonsInstanceDiscovery
这是我的 application.properties:
turbine.aggregator.clusterConf=mycluster
turbine.instanceUrlSuffix.mycluster=8080/hystrix.stream
turbine.FileBasedInstanceDiscovery.filePath=turbine.hostnames.txt
turbine.InstanceMonitor.eventStream.skipLineLogic.enabled=false
InstanceDiscovery.impl=com.netflix.turbine.discovery.FileBasedInstanceDiscovery
还有其他方法可以做到这一点吗?此外,对于我的涡轮主机名的文件路径,它从哪里开始查找?我可以将文件放在我的 jar 的资源目录下吗?
这是我的 pom 文件依赖项:
<properties>
<java.version>1.8</java.version>
<spring-cloud.version>Greenwich.SR1</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web-services</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix-dashboard</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-turbine</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>$spring-cloud.version</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
【问题讨论】:
【参考方案1】:涡轮机的一些文档不清楚且相互冲突,我认为这是因为有 spring-cloud-netflix 项目和独立的涡轮机项目。无论如何,如果你正在构建一个 spring-boot 应用程序,那么这个属性是没有用的:
InstanceDiscovery.impl=com.netflix.turbine.discovery.FileBasedInstanceDiscovery
如果你想改变 InstanceDiscovery 的实现,这很简单,只需像这样创建一个实现 InstanceDiscovery 的 bean:
@Bean
public InstanceDiscovery instanceDiscovery()
//choose either one of the provided implementations from spring or
//create your own
return new ConfigPropertyBasedDiscovery();
//return new FileBasedInstanceDiscovery();
确保将它放在 @Configuration 类中。我最初只是在我的 SpringBootApplication 类中使用了我的,但这不允许您覆盖默认实现。
【讨论】:
【参考方案2】:我使用了 ConfigPropertyBasedDiscovery,但我遇到了异常
2020-03-30 13:19:14.360 INFO 17060 --- [ Timer-0] c.n.t.discovery.InstanceObservable : Hosts up:1, hosts down: 0
2020-03-30 13:19:14.371 错误 17060 --- [Timer-0] cntmonitor.cluster.ClusterMonitor:无法在 hostUp 上启动监视器:StatsInstance [hostname=localhost:8080,cluster:VIBuilder,isUp :是的,attrs=]
java.lang.RuntimeException:配置为使用端口,但端口或securePort不在主机属性中 在 org.springframework.cloud.netflix.turbine.SpringClusterMonitor$1.getUrlPath(SpringClusterMonitor.java:114) ~[spring-cloud-netflix-turbine-2.2.2.RELEASE.jar:2.2.2.RELEASE] 在 com.netflix.turbine.monitor.instance.InstanceMonitor.(InstanceMonitor.java:185) ~[turbine-core-1.0.0.jar:na] 在 com.netflix.turbine.monitor.instance.InstanceMonitor.(InstanceMonitor.java:173) ~[turbine-core-1.0.0.jar:na] 在 com.netflix.turbine.monitor.cluster.ClusterMonitor$ClusterMonitorInstanceManager.getMonitor(ClusterMonitor.java:300) ~[turbine-core-1.0.0.jar:na] 在 com.netflix.turbine.monitor.cluster.ClusterMonitor$ClusterMonitorInstanceManager.hostUp(ClusterMonitor.java:268) ~[turbine-core-1.0.0.jar:na] 在 com.netflix.turbine.monitor.cluster.ClusterMonitor$ClusterMonitorInstanceManager.hostsUp(ClusterMonitor.java:312) ~[turbine-core-1.0.0.jar:na] 在 com.netflix.turbine.discovery.InstanceObservable$1.run(InstanceObservable.java:298) ~[turbine-core-1.0.0.jar:na] 在 java.base/java.util.TimerThread.mainLoop(Timer.java:556) ~[na:na] 在 java.base/java.util.TimerThread.run(Timer.java:506) ~[na:na]
【讨论】:
以上是关于使用 FileBasedInstanceDiscovery 的 hystrix-dashboard 涡轮机的问题的主要内容,如果未能解决你的问题,请参考以下文章
在使用加载数据流步骤的猪中,使用(使用 PigStorage)和不使用它有啥区别?
Qt静态编译时使用OpenSSL有三种方式(不使用,动态使用,静态使用,默认是动态使用)