AWS Service registry for resilient mid-tier load balancing and failover.
Questions tagged [netflix-eureka]
1623 questions
8
votes
4 answers
EnableEurekaClient import doesn't exist
I added spring-cloud-starter-netflix-eureka-client gradle depedency in
my project and shrik the depedency. But when go use
@EnableEurekaClient in my Main class it show me suggestion create
@EnableEurekaClient annotation. Don't show any import file…

Mama
- 475
- 1
- 10
- 26
8
votes
5 answers
FeignClient not resolving Eureka service name
I'm writing a Eureka Client Application using spring-cloud-starter-openfeign client.
Here is my POM

Abdul Mohsin
- 1,253
- 1
- 13
- 24
8
votes
1 answer
Client-side load balancing in practice seems to be almost the same as server-side load balancing. Is that so?
In server-side load balancing, the clients call an intermediate server, which then decides which instance of the actual server (or microservice) to call.
In client-side load balancing also, the clients call an intermediate server (the API gateway -…

Daud
- 7,429
- 18
- 68
- 115
8
votes
5 answers
convert application.yml file to application.properties
I have my application.yml file as below. How to convert it to application.properties
I am trying it but how can i write multiple properties in same file. Its giving me duplicate kery error.
---
spring:
profiles: peer1
eureka:
…

Sudhanshu Saini
- 127
- 1
- 2
- 9
8
votes
1 answer
Eureka Server and Spring Boot Admin in one Application
I try to run Eureka Server and Spring Boot Admin Server in one Application (SBA Docu says this is possible). Eureka is working as intended but the Admin App still shows zero Applications.
Spring Boot Version 2.0.3,
Spring Boot Admin Version…

Domo
- 560
- 5
- 18
8
votes
4 answers
Error registering service to eureka server
I am trying to register a client to spring-eureka-server, client deregisters just after registering
eureka-server logs:
2018-05-13 16:02:47.290 INFO 25557 --- [io-9091-exec-10]
c.n.e.registry.AbstractInstanceRegistry : Registered instance
…
user9584853
8
votes
3 answers
Eureka Client running with name "UNKNOWN" in eureka server UI
I created a Eureka server spring boot application. It is properly loaded. After that I am trying to create a Eureka client.But it is not getting listed in eureka server UI. I am adding my client application details.
My main controller class file is…

Mr.DevEng
- 2,651
- 14
- 57
- 115
8
votes
3 answers
Springboot client unable register with Eureka using Docker container id
I have several microservices running in Docker Data Center. I have the same Eureka configuration across the services/applications. But some of the applications are registering with their eth0 IP address instead of the container ID.
I have tried…

zeagord
- 2,257
- 3
- 17
- 24
8
votes
1 answer
Spring Cloud - Registry Service port customization
I'd like to customize the Eureka port with Spring Cloud.
With the default port below, the services registry sees itself right (within the provided GUI)
spring:
application:
name: services-registry
server:
port: 8761
eureka:
instance:
…

Thomas Escolan
- 985
- 1
- 8
- 17
8
votes
4 answers
eureka unknownHostException in service discovery
I've two microservices,
eureka-client-1 running on localhost:8081
eureka-client-2 running on localhost:8082
Both these are DiscoveryClients registered with 'eureka-server' running on localhost:8761.
In code snippet below, I'm trying to call…

prranay
- 1,789
- 5
- 23
- 33
8
votes
2 answers
how to manage spring-cloud bootstrap properties in a shared library?
I'm in the process of building a library which provides an opinionated configuration for applications which use our Spring Cloud Config/Eureka setup. The idea is to deliver this configuration as a custom starter with little or no spring…

shazbot
- 153
- 2
- 9
8
votes
2 answers
Value of Eureka in Cloud Foundry/PaaS environment?
We are working on a cloud native app to be deployed in Cloud Foundry and after initial "let's use all the goodies from Netflix", we started to question if the overlap with CF is justifying usage of Netflix components.
Especially in case of Eureka,…

Lech Migdal
- 3,828
- 5
- 36
- 63
8
votes
3 answers
How to Register Node app with Spring Cloud and Netflix's Eureka
I am trying hard to register my node app, with Netflix's Eureka , and after googling a lot, I am still looking for a solution . The max I can figure out is we have Prana but I got an issue which is still in the issue list of Prana (I guess it means…

Prateek
- 299
- 3
- 18
8
votes
1 answer
How to forward all requests to specific version (of same service) during deployment using netflix?
I have 4 instance of the same service running on different hosts. I am deploying new version for that service node by node. While deployment, incoming requests get forwarded according to the load balancer to any version (host). Is there any way in…

Gaurav Ajmera
- 134
- 5
8
votes
1 answer
Eureka: How do I disable/configure peer replication?
When I run Eureka on port 8761, everything works great. The config server can register to Eureka without problem. When I change eureka port to 7001, however, things stop working and I can't seem to figure out how to fix them.
The issue seems to…

Klaus
- 2,328
- 5
- 41
- 62