Questions tagged [netflix-eureka]

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

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

1623 questions
0
votes
0 answers

Spring - Service registration with Eureka ignored by Ribbon

I have a Spring Boot app trying to fetch an instance of a service through Eureka/Ribbon: @LoadBalanced @Autowired RestTemplate restTemplate; @RequestMapping("/hi") public String hi(@RequestParam(value="name", defaultValue="superuser") String name)…
levacjeep
  • 673
  • 3
  • 6
  • 23
0
votes
2 answers

AWS Elastic Beanstalk deploying Docker with simple SpringBoot Eureka image failure

I'm new to AWS and Elastic Beanstalk. I'm trying to test a multi-container Docker deployment with a simple Spring Boot Docker image https://hub.docker.com/r/springcloud/eureka/ just to see something working for now. I'm uploading a very simple…
0
votes
0 answers

Is Zuul/Ribbon/Eureka combo ideal for edge services

Eureka is ideal for middle tier services as service registry and discovery soln. Isn't it going to be a security smell, if the same eureka server is used to register edge services also? In such case, is it advisable to have separate eureka servers…
Divs
  • 1,578
  • 2
  • 24
  • 51
0
votes
0 answers

How to create HATEOAS Resource Link to remote service method?

The scenario looks like that: eureka server and two other services (spring-boot-apps) are running two micro services (A and B) are registered in eureka server both services provides REST HATEOAS endpoint app 'A' provides a service method 'x' which…
Karol Król
  • 3,320
  • 1
  • 34
  • 37
0
votes
1 answer

Jhipster registry does not allow Eureka Endpoints for sidecar registration

How do I connect to Jhipster registry using Eureka endpoints? I followed this blog. But Jhipster registry doesn't to recognise sidecar and the registration fails with 404 Bad request.
0
votes
1 answer

How to configure Spring Cloud Eureka in Standalone HTTPS

I have used Eureka several times previously in HTTP (non-SSL). However, I am trying to configure the Eureka Server in Standalone mode. Unfortunately, the Server can't seem to register itself. The Client applications are able to register without a…
BPete
  • 43
  • 4
0
votes
1 answer

Zuul retry configuration is not working with Eureka

I have a scenario with Spring Boot Zuul as external Gateway and Eureka as Service Discovery, all this running in Kubernetes. The thing is, I would like to guarantee my service's availability, so when of the instances of my service goes down, I…
0
votes
1 answer

microservices jhipster registry Rest Api's for non-Jvm registration

Is there a way to register non-jvm application in jhipster registry using Rest endpoints,something like https://github.com/Netflix/eureka/wiki/Eureka-REST-operations Or can we integrate Netflix Prana to expose over HTTP Sidecar could be a another…
0
votes
0 answers

Docker Eureka UnknownHostException

I'm trying to do a microservice architecture with dockerized springboot applications. For inner communications I want to use Eureka + FeignClient. The registration with Eureka works fine (afaik): CAREER-SERVICE
Rob987
  • 11
  • 3
0
votes
1 answer

When closing a Eureka Clients, the RestTemplate with @LoadBalanced will continue call the closing service, how fixed it?

I use Eureka and Spring Cloud; Start 2 Eureka Clients; When closing a Eureka Clients, the Eureka client unregister from Eureka server need a little time (3-5 minutes); the RestTemplate with @LoadBalanced will continue call the closing service, how…
Ezreal
  • 111
  • 1
  • 6
0
votes
1 answer

Spring Eureka cluster replication issues [version eureka-Brixton.SR1]

I am trying to setup a eureka cluster which comprise of there servers. (my setup is on local machine) Configurations for each eureka server as below: server1: server: port: 8764 eureka: instance: metadataMap: instanceId:…
Joey Trang
  • 1,105
  • 2
  • 23
  • 44
0
votes
2 answers

Registering single client as multiple applications in Spring Eureka

We are using Spring Eureka for service registry in our project. There are 12 microservices and each microservices serves 4-5 functionality. For example a microservice called "MathOperations" serves functions like addition, subtraction,…
Thiru
  • 2,541
  • 4
  • 25
  • 39
0
votes
0 answers

Spring Boot Hystrix : Request is being retried : How to avoid

Am building a rest service using spring boot. I am testing the Hystrix timeout configurations in my application; for that I started my server in debug mode and put break point to see how much time it is actually takes to timeout. While the control…
0
votes
1 answer

Is it possible to register with eureka with Discovery first?

I'm trying to achieve a discovery first spring cloud config mode. This is my client bootstrap.yml server: port: 9090 spring: application: name: test-config cloud: config: fail-fast: true discovery: enabled: true …
Witko
  • 53
  • 3
0
votes
1 answer

PKIX path building failed while Eureka Client connecting with SSL enabled Eureka Server in Spring Cloud

I'm building cloud based microservice architecture using spring boot.we are using embedded container only which is tomcat for spring boot. moreover we've also added cert to jvm keystore. To make it more simple I've created only two spring boot…
1 2 3
99
100