Ribbon is a Inter Process Communication (remote procedure calls) library with built in software load balancers. The primary usage model involves REST calls with various serialization scheme support.
Questions tagged [netflix-ribbon]
238 questions
0
votes
0 answers
KubernetesClientException - Operation Get failed
I am using Netflix Zuul for an edge service. Once in a while, the PollingServerListUpdater fails one update cycle with a timeout.
Otherwise it runs fine.
Could this be due to an unstable environment or what could be the likely…

Anders Lassen
- 69
- 8
0
votes
1 answer
No qualifying bean of type 'com.netflix.client.config.IClientConfig' available:expected at least 1 bean which qualifies as autowire candidate
I'm creating a loadbalancer using Netflix round ribbon but i am not able to
auto wire IClientConfig this object.
I tried this also
@SpringBootApplication(scanBasePackages{"com.netflix.client.confg.IClientConfig"})
but this is also not working…

prachi
- 113
- 1
- 8
0
votes
1 answer
RestTemplate annotated by @LoadBalanced get wrong service address by service name from eureka sometimes
I use springcloud to build the system, including many microservices。 For some interface calls, I use resttemplate annotated by @LoadBalance to implement load balancing, and use eureka as a registry center. However, when I call interfaces between…

xuelei
- 1
0
votes
1 answer
Get list of all reachable servers regardless of Zone with Ribbon load balancer
We are having 4 zones, each zone having a zuul and UI service running. Ribbon is our load balancer across services.
We are achieving sticky session in Zuul with a custom load balancing rule as specified in…

Seeker
- 2,405
- 5
- 46
- 80
0
votes
1 answer
How to Temporarily Disable Eureka Server support in Ribbon and FeignClient
I have two micro-services(car-management-service & rent-management-service), in rent-management-service i'm calling car-management-service through Ribbon& FeignClient with the help of Eureka Discovery Server. And it's working perfectly.
I have…

Akila Supun
- 21
- 3
- 8
0
votes
1 answer
How to stop "DiscoveryClient: java.lang.IllegalStateException: Shutdown in progress" when Client Shutdown. Cannot use actuator
I create a client of one microservice that uses Eureka (and load balancing with ribbon) and then when I connected it works fine and finish ok microservice functions but when client works finish and start shutdown, next message is show:
OK…

Xiul
- 93
- 1
- 2
- 7
0
votes
1 answer
SpringBoot: LoadBalancer [server]: Error choosing server for key default
I'm creating a load balance feature on my project in which I have three server that will simultaneously ping for 15 seconds. However, when I already run my client-side, it always goes to the fallback page and received an error of "LoadBalancer…

Patricia Ortega
- 81
- 11
0
votes
1 answer
Is it possible we set ribbon individually for each client service?
I did some practices.
1) Using Ribbon with Eureka enabled. works well. (server-service)
2) Using Ribbon with Eureka disabled, using listOfServer. works well.(server-service-ribbon)
3) For different requests, some going to Eureka get instances of…

Neal Di
- 11
- 2
0
votes
1 answer
Micronaut ribbon eureka dependency conflict
I am learning a Micronaut framework.
My gradle.build file
dependencies {
annotationProcessor "io.micronaut:micronaut-inject-java"
annotationProcessor "io.micronaut:micronaut-validation"
compile "io.micronaut:micronaut-http-client"
compile…

user3756506
- 431
- 1
- 3
- 12
0
votes
1 answer
Spring ServletFileUpload iterator return empty list
I developed a system with microservice architecture with spring boot(1.5.9) framework, I used zuul and ribbon in the gateway pattern.
In order to upload large files, I disabled multipart upload as below:
application.yml
spring:
http:
…

Ali
- 443
- 5
- 22
0
votes
1 answer
ClassNotFoundException: com.netflix.config.CachedDynamicIntProperty for SpringBoot 2 ribbon starter
There is SpringBoot 2.1.4.RELEASE application with spring-cloud-starter-netflix-ribbon 2.1.1.RELEASE dependency.
Trying to run spring integration test (using @SpringBootTest) during test application startup such an exception is thrown:
Caused by:…

Alex
- 181
- 3
- 6
0
votes
1 answer
Best way to consume microservices between them, using spring boot, cloud, eureka and zuul
I have a project based on spring boot, using microseroservis, eureka as services registration and zuul as proxy server. I have two services that one dependes thah other. Each services has own rest controller, service, serviceimpl and repository,…

victorpacheco3107
- 822
- 3
- 10
- 32
0
votes
1 answer
Spring Cloud Eureka + FeignClient + Ribbon : Load balancer does not have available server for client
I have Below Simple Setup.
Spring Cloud Eureka Server- and Two Services PricingService and DiscountService. Pricing Service calls-> DiscountService.
Server Setup
@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication { …

Niraj Sonawane
- 10,225
- 10
- 75
- 104
0
votes
0 answers
Why netflix-ribbon dependencies is not working with netflix-eureka dependencies
I am building microservices in my local machine. One client app is based on netflix-ribbon and netflix-eureka. I am getting the below error in logs.
com.netflix.client.ClientException: Load balancer does not have available server for client:…

CodeRider
- 564
- 4
- 15
0
votes
1 answer
How to get load balanced access to different microservices ( Using ribbon, Springboot)
Consider a scenario: MasterApp( microservice 1) needs to call AssistApp( Microservice 2) to get data set A and tertiaryApp ( microservice 3) to get data set B.
Each `Microservice ( 2 and 3) has 3 instance which needs to be load balanced( Ribbon is…

RAHUL ROY
- 126
- 2
- 13