Questions tagged [netflix-eureka]

AWS Service registry for resilient mid-tier load balancing and failover.

https://github.com/Netflix/eureka/

1623 questions
0
votes
1 answer

Netflix Zull paths config

I'm use eureka + zull and have the following config: Zull: zuul: prefix: /api routes: user-service: path: /user-service/** serviceId: user-service User-service micro-service endpoint: @RestController @RequestMapping(value =…
0
votes
1 answer

Zuul Load balancer does not have available server for client

I've been trying to connect microservices using Zuul and Eureka and have succeeded for the most part except re-routing through Zuul based on serviceId. What I have is Spring Boot Zuul and Eureka applications, and a Node-based microservice which…
0
votes
0 answers

Running Jhipster in Eclipse Tomcat server

I am trying to run Jhipster in Eclipse Tomcat Server but it seems that it is not working. I have created my gateway in Amazon Linux and checked that it works before bringing it to the Windows Eclipse. As our team is trying to develop in the Windows…
Jun
  • 3
  • 2
0
votes
1 answer

Spring boot does not compatible with Eureka server

I have build an application that is a Eureka server, service registry. The pom.xml is as following:
reza ramezani matin
  • 1,384
  • 2
  • 18
  • 41
0
votes
0 answers

Variables in yaml configuration not substituted

I'm trying to set up some microservices with Spring Boot and Eureka. I'm using YAML configuration and when I start up the services, they are registered with the Eureka service. The problem I have is that the environment variables in my configuration…
Wouter C
  • 533
  • 1
  • 6
  • 21
0
votes
1 answer

spring cloud can't fetch service from zuul in docker

i have a simple spring cloud project,and it contains 4 services: config:8888 registry(eureka):8761 gateway(zuul):8080 service-1:9527 enter image description here the project has no problem if deployed in localhost, i can successfully fetch…
0
votes
1 answer

Zuul router with Spring application.yml routes won't work as expected

Hello I tried to make routing with zuul work I looked at the docs and read this part. application.yml. zuul: routes: users: /myusers/** This means that http calls to "/myusers" get forwarded to the "users" service (for example…
vimes
  • 173
  • 1
  • 1
  • 7
0
votes
1 answer

Spring boot eureka server bean creation error

I am not able to run the spring eureka server, I do get the following error. org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name…
Balaji Gopal
  • 789
  • 1
  • 6
  • 13
0
votes
0 answers

eureka: Custom clientFilter is useless

For more complex needs you can create a @Bean of type DiscoveryClientOptionalArgs and inject ClientFilter instances into it, all of which will be applied to the calls from the client to the server. this description in spring-cloud…
0
votes
3 answers

eureka zuul cannot find my python app registered on eureka

I have a python web app, and registered with eureka using restfull api[https://github.com/Netflix/eureka/wiki/Eureka-REST-operations], and I found it status UP on the eureka web page, but my gateway server(also registered with eureka) can not find…
lizx
  • 21
  • 1
  • 5
0
votes
0 answers

issue with upgrading to spring cloud Dalston.SR4 version from Brixton.SR3

I am trying to upgrade to spring-cloud version from Brixton.SR3 to Dalston.SR4 version but somehow the ribbon client is not working properly. We have a service running with version Brixton.SR3 trying to make a rest cal to another service with…
Joey Trang
  • 1,105
  • 2
  • 23
  • 44
0
votes
3 answers

Spring Cloud Gateway - Return 503 when no Service Instance Available

Trying out Spring Cloud Gateway with Spring Boot microservices registered/discovered via Eureka server. The setup is working fine and clients can call the discovered services via the gateway without problem which is great. Now, I am trying to test a…
Going Bananas
  • 2,265
  • 3
  • 43
  • 83
0
votes
1 answer

Spring Cloud - Eureka service discovery clustering

I have tried starting Eureka service in peer to peer awareness with following profiles. #profile 1: spring: application: name: service-registry profiles: p1 server: port: 8761 eureka: dashboard: enabled: false override: true …
Arpit
  • 521
  • 2
  • 8
  • 22
0
votes
4 answers

Unable to register multiple instance of eureka

I am trying to create two instance of Eureka server.But when i run it they are unable to register each other. Error i am getting is: com.netflix.discovery.DiscoveryClient : Getting all instance registry info from the eureka server 2017-11-02…
0
votes
1 answer

How to call external service (Non MSA) from Api gateway (Zuul) in spring boot application

In my Spring boot micro service application,I am using Zuul proxy as edge service in my API Gateway. I need to call external service which is not registered in eureka server(Non Micro Service Architecture). How Can I call that external service from…