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

How to communicate with jwt enable service in microservice

I am new to spring boot microservice, was able to setup the microservice project successfully. But I tried to implement JWT on the Auth-Service which worked and @RestController @RequestMapping("/token") public class JwtController { @Autowired …
Kunle Ajiboye
  • 723
  • 1
  • 8
  • 22
0
votes
0 answers

IClientConfig ribbon doesn't read properties from application.properties

I created IClientConfig @Bean public IClientConfig ribbonClientConfig() { final DefaultClientConfigImpl config = DefaultClientConfigImpl.getClientConfigWithDefaultValues("my-service", "ribbon"); return config; } And I have in…
0
votes
0 answers

Ribbon doesn't see property

I'm using ribbon and eureka and I want add the following property: my-service.ribbon.ServerListRefreshInterval However, the default context doesn't see this property. I'm using ribbon as a loadBalancer. Currently I fixed it by using: …
0
votes
0 answers

Combine frontend Thymeleaf with backend Spring Boot

How to call the backend API from front end which is thymleaf based when both the frontend and backend API are 2 different microservices. And also I have a Eureka Server and microservices that are registered to this server. I have the frontend and…
0
votes
1 answer

Spring Eureka BeanCreationException on updating renewal threshold

I have a simple eureka server with simple configuration (this server is used for development and local testing, spring-boot-starter 1.5.4 version, eureka 1.3.4). It has following configuration (and nothing else special): #application.yml server: …
arthas
  • 104
  • 1
  • 11
0
votes
1 answer

Spring Boot HashiCorp vault register on Eureka

While information exists on the internet, in how you can enable discoveryClient to find the vault service within a spring boot application. e.g. spring.cloud.vault.discovery.enabled: true No information exists in how you actually can register…
0
votes
0 answers

How to detect new REST calls dynamically as and when they are available?

I am creating an API gateway using Netflix Zuul and Netflix Eureka doing the part of service registration for service discovery for a microservices framework. I am trying to support a use case where new micro-services may come up which expose REST…
0
votes
1 answer

Ribbon- Calling a specific uri of an application from urls obtained from Eureka

Lets consider the following situation.This example will only have urls containing localhost. I have a zuul proxy setup and lets say its running on port 8080. So Zuul proxy- localhost:8080 I have an eureka server setup running on port 81. …
0
votes
1 answer

Is it possible to have 2 different services with the same application name?

Let's say I have a service named "FooService" running in a docker container and a second service named "BarService" running in a second docker container. Both services register with Eureka (running in another docker container). Is it possible to…
StSch
  • 377
  • 1
  • 4
  • 12
0
votes
1 answer

Ribbon With Eureka in Spring Boot

I want to know about the flow of working on Eureka and Ribbon together. a) When ribbon is used without eureka, it keeps serverList. But while using eureka,it fetches the serverList from Eureka. But when does ribbon fetches this data? on start-up or…
Ankit Bansal
  • 2,162
  • 8
  • 42
  • 79
0
votes
1 answer

Eureka client fail to fetch registry from (clustered) peer aware eureka servers

I have setup 2 eureka servers which successfully replicates registrations. Unfortunately when client app fetch registry through DiscoveryClient, response cause "java.util.zip.ZipException: Not in GZIP format". With single eureka server everything…
0
votes
1 answer

Register, Deregister, perform all operations on eureka discovery from python web-services

I developed python web api to do some task which i need to register on spring eureka server for the discovery. Libraries are not available for it and available stuff of google is not helpful.
Rishabh K Sharma
  • 239
  • 4
  • 15
0
votes
1 answer

health check of falcon web service from eureka discovery server

eureka server is the discovery server which tracks wether services are alive or not. i am able to register my services to it but it automatically de registers it. Please suggest me a way by which i can achieve it from falcon web service and unicorn…
Rishabh K Sharma
  • 239
  • 4
  • 15
0
votes
1 answer

@EnableZuulProxy cause junit tests fail to load ApplicationContext

The main application relies on microservices which mainly work through feign clients except for one - uploading of files. Since feign clients only works with text-based data, RestTemplate along with zuul proxy is used instead. Instead of having a…
0
votes
2 answers

Problems starting up Eureka Server

I am trying to set up a Zuul gateway with a Eureka Server and several clients. So far, I have created the Gateway and and initial Client without problems, but for some reason i keep getting an error when I try to start the registry. As far as I can…
JoSSte
  • 2,953
  • 6
  • 34
  • 54