我有3个项目:hystrix仪表板,涡轮服务器(使用AMQP)和API
当我在开发环境中开始时,我设置了2个API实例(使用端口8080和8081)。为了测试涡轮机聚合,我打电话,在仪表板中,我可以看到Hosts: 2
虽然当我使用Docker时,即使负载均衡器击中2台服务器,我也只能在hystrix仪表板上看到一台主机。
我的假设:
1-当两个容器都在同一个端口(8080)上启动时,Turbine将它们视为一个
2-因为我还将RabbitMQ停靠,这可能会导致问题
这是我的docker-compose.yml
文件
version: '2'
services:
postgres:
image: postgres:9.5
ports:
- "5432"
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: fq
volumes:
- /var/lib/postgresql
rabbitmq:
image: rabbitmq:3-management
ports:
- "5672"
- "15672"
environment:
RABBITMQ_DEFAULT_USER: turbine
RABBITMQ_DEFAULT_PASS: turbine
volumes:
- /var/lib/rabbitmq/
hystrix:
build: hystrixdashboard/.
links:
- turbine_server
ports:
- "8989:8989"
turbine_server:
build: turbine/.
links:
- rabbitmq
ports:
- "8090:8090"
persona_api:
build: persona/.
ports:
- "8080"
links:
- postgres
- rabbitmq
lb:
image: 'dockercloud/haproxy:1.5.1'
links:
- persona_api
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 80:80
我的persona_api
配置文件
spring:
application:
name: persona_api
profiles:
active: dev
rabbitmq:
addresses: 127.0.0.1:5672
username: turbine
password: turbine
useSSL: false
server:
compression.enabled: true
port: ${PORT:8080}
params:
datasource:
driverClassName: org.postgresql.Driver
username: postgres
password: postgres
maximumPoolSize: 10
poolName: fq_connection_pool
spring.jpa:
show-sql: true
hibernate:
ddl-auto: update
turbine:
aggregator:
clusterConfig: persona_api
appConfig: persona_api
---
spring:
profiles: dev
params:
datasource:
jdbcUrl: jdbc:postgresql://127.0.0.1:5432/fq
---
spring:
profiles: docker
rabbitmq:
addresses: rabbitmq:5672
params:
datasource:
jdbcUrl: jdbc:postgresql://postgres:5432/fq
我担心如果我将它部署到生产中(在Rancher或Docker云上),我会看到同样的问题。
这是我设置两个API负载均衡
时发生的事情的GIF答案 0 :(得分:1)
尝试:
hystrix.stream.queue.send-id=false
您的API中的
答案 1 :(得分:0)
我认为你的问题是你正在使用的RabbitMQ连接。导致您正在使用的连接字符串是localhost,但实际上除了RabbitMQ容器之外,所有连接都不会在localhost上可用。我建议您使用环境变量将Rabbit主机注入Spring连接。如果我正确读取您的文件,它应该是${RABBITMQ_PORT_5672_TCP_ADDR}
而不是localhost。但请注意,我无法尝试。这只是一个有根据的猜测。当一切都在运行时,最好通过在persona_api容器中执行env
来仔细检查。
答案 2 :(得分:0)
应该解决你的问题。
eureka: instance: prefer-ip-address: true instance-id: ${spring.cloud.client.ipAddress}:${server.port} #make the application unique on the rancher service layer spring: application: index: ${random.uuid} #make the application unique on the rancher containe layer,same service but with multi-instances.
https://github.com/spring-cloud/spring-cloud-netflix/issues/740
需要instance-id:$ {spring.cloud.client.ipAddress}:$ {server.port}和index:$ {random.uuid} both