AWS Service registry for resilient mid-tier load balancing and failover.
Questions tagged [netflix-eureka]
1623 questions
0
votes
1 answer
Shutdown a Service outside of Spring Boot
I'm writing some simple Microservices to understand the way Netflix Eureka works.
I was wondering if there is a general possibility of programmatically shutting down a Service in Java, with immediate deregistration from the Eureka Service Registry…

Renata Samà
- 37
- 5
0
votes
1 answer
Spring Cloud Gateway with Eureka getting 504 (Gateway Time-out)
Let's assume I have one Eureka Server, one Spring Cloud Gateway and one ServiceA running with two instances.
When I deploy an updated version of the service, for a brief period of time, eureka will hold four instances for ServiceA, the ones that…

dmendezg
- 1,888
- 1
- 15
- 23
0
votes
6 answers
java.lang.ClassNotFoundException: com.netflix.discovery.EurekaClientConfig
I'm using Spring Cloud Eureka and creating the project using Spring Initializr (http://start.spring.io/). The generated POM user Eureka Finchley.RC2 with Spring Boot 2.0.2.RELEASE. When I add the annotation @EnableEurekaServer in the main class, the…

user2834179
- 7
- 1
- 3
0
votes
0 answers
Can I use eureka server in cluster mode in data centers other than cloud environment
I am using eureka server as a service registry to my micro service architecture. I want to configure eureka server to be in cluster mode to make use of high availability and fault tolerance. I would like to know does eureka server will run in…

s n murthy d
- 13
- 4
0
votes
0 answers
Gateway app can not connect to microservices
we are using Jhipster and docker for our microservices architechture. we just deployed our application stack to docker swarm(docker-compose version 3) with one only one node as active and having issues with Gateway app throwing zuul timeout…

cnu
- 477
- 8
- 22
0
votes
1 answer
Eureka Server Health Not Running
I updated a eureka server from Camdem.R3 to Flinchley.RC1 lately. There were a lot of changes in the settings.
On Camden.R3, without doing any additional settings the console link to the health check would work. For Flinchley.RC1 the health check…

Nap
- 8,096
- 13
- 74
- 117
0
votes
0 answers
Spring Boot 2: Environment Variable Relaxed Binding
I have been using environment variables to set Eureka client service url for my Spring Boot 1.5 application.
Environment=eureka_client_serviceUrl_defaultZone=http://myhost1:8761/eureka/,http://myhost2:8761/eureka/
However, this stopped working…

wltheng
- 750
- 1
- 11
- 26
0
votes
0 answers
It's there any overhead while using Eureka and Zookeper(Kafka) in a JHipster Microservices environment?
I'm actually building an microsysteme environment based on JHipster. But we have some questions about server overhead.
JHipster Registry used per default Eureka and we want to add a Kafka as queue. The point is: Kafka come with Zookeeper…

3logy
- 2,634
- 8
- 46
- 99
0
votes
1 answer
adding instances in eureka sever
server.port=1013
eureka.client.serviceUrl.defaultZone=http://localhost:1000/eureka
eureka.instance.instanceId= ${spring.application.name}:${random.int}
I'm using the default port 1013 in producer. How do I add another instance in netflix ribbon so…

Bhaskar
- 1
- 1
0
votes
1 answer
How to register more than one service per eureka client on eureka server?
I am starting learning Eureka APIs. I created a Eureka Server using spring boot and corresponding clients.
For starting I created a Eureka Client and registered with Server. The client was exposing a get service with no path
@GetMapping("/")
This…

varkashy
- 374
- 4
- 18
0
votes
1 answer
spring boot war deployment url with api gateway
I am using spring boot version 1.5.10.RELEASE.
I have developed on service using spring boot and used Eureka service register, Zuul API Gateway.
My applications pom file application name is "TestApplication"
…

Coder Guru
- 513
- 3
- 18
- 37
0
votes
1 answer
Eureka Server using Spring Cloud Finchley RC1
Eureka with Spring Cloud Finchley.RC1 is using form based authentication which causes that the eureka clients cannot use the:
eureka:
client:
serviceUrl:
defaultZone: http://user:password@localhost:8761/eureka
Any idea how to get back…

Zoltan Altfatter
- 802
- 2
- 11
- 25
0
votes
1 answer
Self Updating Simulator for a Web-service Suite
I am presently working on an application which has an external dependency on micro-services, there are around 25 microservices, which are administrated via a eureka instance, every microservice has around 3-4 controllers.
This is an external…

Vivek Gupta
- 2,534
- 3
- 15
- 28
0
votes
2 answers
Eureka Server Build failing because of com.netflix.eventbus.spi.EventBus
I am trying to create a spring cloud eureka server with spring boot initialize.
But I am getting the below exception.
java.lang.IllegalStateException: Failed to load ApplicationContext Caused by:…

Prakash
- 1
- 1
- 3
0
votes
1 answer
Register multiple microservice instance with same name on development enviroment
we have a eureka server deployed on server and developers for development purpose register their microservices with it. but when some developers that work on same microservice, register own microservice's instance on eureka [sure with their local ip…

mehdi shahdoost
- 1,469
- 5
- 17
- 27