AWS Service registry for resilient mid-tier load balancing and failover.
Questions tagged [netflix-eureka]
1623 questions
0
votes
1 answer
Service is accessible even after Eureka is shutdown
I have two Microservices, MS1 and MS2 both registered with Eureka server. MS1 invokes MS2. I found that even after I shutdown the Eureka server, I am able to run MS1 without any error. If the Eureka server is down how is MS1 able to figure out…

codingsplash
- 4,785
- 12
- 51
- 90
0
votes
1 answer
How can I get specific diagnostic information on an IP address from Zuul?
I have Zuul and Eureka running, with a bunch of smaller services. Using Eureka, I can see all of the services and their associated host/IP address. Usually, I can boot up multiple instances of another service and Eureka will pick them up for Zuul to…

RustyTheBoyRobot
- 5,891
- 4
- 36
- 55
0
votes
2 answers
Spring Eureka dynamic service lookup
Very new to Spring/Eureka, sorry if this is a dumb question:
I have multiple services, all implementing a common interface. I need to dynamically (at runtime) select the correct implementation. For example, I may have a front end that services…

Lonnie Lewis
- 65
- 1
- 6
0
votes
1 answer
How do I configure Zuul routing for URL with Token?
I am working with a microservice architecture where a Zuul gateway contacts a Eureka server to discover published microservices. I want my zuul gateway to accept path in a particular format.
It received a URL call with a member id sent as a token.…

IcedDante
- 6,145
- 12
- 57
- 100
0
votes
1 answer
DiscoveryClient does not see a service from Eureka
When I ask eureka about the services it knows (localhost:8071/eureka/apps/), it says 3 are UP:
1
UP_3_
ROUTER
…

Tomasz
- 988
- 1
- 9
- 23
0
votes
0 answers
how to get "URL" "Service" "available Service" in jhipster project and Gateway Architecture
I created an application jhipster: architecture gateway and Jhipster Registry
Normally it should show, in my gateway Page ,the current Routes
Gateway Page
But nothing appears !!!!
In addition in my console I have the following errors :
console

imen
- 1
- 2
0
votes
1 answer
Fallback method is not being called when rest call is failed by using feign client
I am trying to implement fallback by using Feign client but not getting success.Its a simplest code Please find below.
Main Class
@SpringBootApplication
@EnableDiscoveryClient
@RestController
@EnableFeignClients
public class EurekaClient1Application…

rocky
- 737
- 4
- 11
- 19
0
votes
1 answer
Customizing Ribbon configuration with Zuul/Eureka
I am using Spring Cloud Netflix Zuul along with Eureka in our environment.
I assume internally Zuul uses Ribbon to do the load balancing after obtaining the instance info from Eureka.
I want to customize ribbon configuration when used with…

dexdeb
- 53
- 2
- 6
0
votes
1 answer
heroku eureka-js-client node- Spring Cloud Netflix Support -
What I want to achieve is:
registering a node.js service in my eureka-server in heroku.
So far i can register a regular eureka-client in my eureka-server in heroku, without problems. But i am getting really confused with the configuration when try…

Sheila
- 1
- 2
0
votes
1 answer
Eureka on Cloudfoundry RestTemplate gets 301 Moved Permanently
I’m setting up a Spring Boot microservice infrastructure with a Eureka Service Registry.
I’m using RestTemplate to call another service (resolution done via Eureka) locally it works perfect! But on Cloud Foundry I always get a “301 Moved…

Paul Wein
- 609
- 5
- 9
0
votes
1 answer
Feign Client Prioritizing URL's in yaml over Eureka
I have a Spring Boot application which serves as a Eureka client. The application has the need to call another micro-service through REST, and I wish to make this call using Feign. The issue I am having is, my application is trying to lookup the…

dFrancisco
- 896
- 1
- 11
- 21
0
votes
0 answers
Eureka Server without Spring
I am looking to setup a eureka server without spring. I downloaded the following war file:
http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22eureka-server%22
I am deploying the war on a local Tomcat v8.5. During startup i get the following log…

Simon Eismann
- 273
- 1
- 5
- 17
0
votes
0 answers
JHIPSTER Registry and NODEJS eureka-js-client NullPointerException
I would like to add a node.js server as a microservice application on jhipster-registry.
I use eureka-js-client npm package
You can find a node test project "zhudan/node-eureka" on github
// ------------------ Eureka Config…

awat
- 175
- 1
- 1
- 9
0
votes
1 answer
Spring RestTemplate netflix loadblancer not configuring httpClient header Host
We have a complicated app based on Spring Cloud, Netflix Loadbalancer, to make calls between micro-services ms1-->ms2
We are using a restTemplate.exchange call to a URI hostname that is a Eureka Key for FQDN lookup.
This…

ken
- 666
- 2
- 6
- 19
0
votes
1 answer
Spring boot test configuration not override normal configuration well
I have a spring boot application with configuation like this:
src/main/resources/application.yml:
eureka:
client:
serviceUrl:
defaultZone: http://10.254.102.12:1111/eureka/
In my unit test cases, I want to set eureka instance name and…

kk17
- 601
- 6
- 14