netflix-zuul Questions

2

I've heard that Zuul 2 is released. Are there any plan of updating Spring for it? I can't wait. I applied Spring cloud to build a microservice system and think they are awesome. So, Zuul 2 makes ...
Ribbing asked 5/10, 2016 at 16:9

2

Using Spring-cloud Angel.SR6: Here is the configuration of my Spring-boot app with @EnableZuulProxy: server.port=8765 ribbon.ConnectTimeout=500 ribbon.ReadTimeout=5000 ribbon.MaxAutoRetries=1 ri...

3

Solved

I am trying to use a ZuulFilter in a simple spring-cloud-Netflix Api gateway (reverse proxy) in order to authenticate requests against a custom authentication provider (via Rest call). The Filter...
Solenoid asked 28/6, 2015 at 11:41

1

Solved

I have trouble understanding the connection between Zuul and Ribbon. I think I got Zuul clear. It's a reverse proxy I can contact to reach one of my several instances of a service. It will pick th...
Mandrill asked 21/4, 2017 at 8:47

2

I've been trying to get to the bottom of a strange redirection issue for the past 2 days without success. Based on the spring-cloud example projects, I've configured Eureka, Zuul and a basic servi...

1

Solved

I'm using Spring Cloud's Zuul to proxy some API requests to a few external servers. The proxying itself works well, but each service requires a (different) token provided in the request header. I'...

1

Solved

I am attempting to move from Eureka to Consul for service discovery and am having an issue - my gateway service registers and my customer-service registers, but the gateway service will not route r...
Cantoris asked 23/3, 2017 at 17:35

1

I am using a spring boot application with @EnableZuulProxy annotation. But I would like to add custom routes during runtime. How is this possible? Existing documentation only shows static example...
Poco asked 5/8, 2016 at 15:59

2

Solved

I'm looking to implement a simple reverse proxy with Spring Boot that is: Easy to add routes Ability to add custom authentication on a per route basis Add additional headers as needed I've look...
Seesaw asked 31/3, 2015 at 1:46

1

Solved

I am trying to finally choose between Spring Cloud Netflix, Kubernetes and Swarm for building our microservices environment. They are all very cool and do some choice is very hard. I'll desc...

1

Solved

I am new to spring cloud and going through some examples and material available online to make myself comfortable. However, while reading about ZUUL, some sites configured the routes in ZUUL's appl...

1

After reading the documentation on Spring cloud Zuul I have understood that with SEMAPHORE isolation and max concurrent requests of around 2, Zuul server can easily handle about 5000 rps. With a va...
Tse asked 14/7, 2016 at 7:48

1

Solved

I have some microservices discovered with Eureka. Most of them provide some API. And I have "edge" service called "Gateway service" which is Zuul Proxy actually. The thing is that there is a web ap...
Ridiculous asked 26/1, 2017 at 14:15

1

According to this answer https://mcmap.net/q/420759/-how-to-deploy-microservices-on-heroku I would like to get a little bit more information about best practices with microservices on Heroku. The...
Fireguard asked 23/1, 2017 at 19:20

2

Solved

Is it possible to exclude paths or matchers from the Zuul routing? The goal is that All requests to /contracts/** are routed to contract.example.com All requests to /audit/** are routed to audi...
Novah asked 11/5, 2016 at 15:50

3

Solved

I am able to hit the service, if the flow doesn't contain Basic Authorization. If i use Basic Authorization, it throws "message": "Full authentication is required to access this resource" Below a...

1

I'm using Spring Boot Cloud + OAuth2 Auth system, but I'm having a problem in the auth method. When I try to authenticate with my server the Zuul gateway is not sending the headers params, but if I...
Panhellenic asked 7/3, 2016 at 19:53

1

Solved

I would like to use Zuul as a Proxy for some REST services that I'm using. My question is: since I'm running it as a Spring Boot Application, is there any way to configure it for High Availability?...

2

Solved

I am using Spring Cloud and Zuul proxy as gateway to my RESTful service. Gateway Application (Spring Boot web app running on port 8080) relevant code:- Main class:- @SpringBootApplication @Enabl...

1

Solved

Background I'm using Spring cloud Brixton.RC2, with Zuul and Eureka. I have one gateway service with @EnableZuulProxy and a book-service with a status method. Via configuration I can emulate work...

1

Solved

I am using spring cloud eureka and spring cloud zuul proxy and i was wondering if there is any way to add dymanic zuul routes when a new service is register in eureka server or the only way to add ...
Aridatha asked 5/5, 2016 at 15:38

0

I have a set of Spring Boot (1.3.3) with Spring Cloud (Brixton.RC2) microservices running behind Zuul and I have issues with my urls being rewritten in redirects. My main issue is that my web app ...

0

We have created our application with Spring-Cloud Eureka and Spring-Cloud Zuul with multiple core / support micro services registering to Eureka and accessed via Zuul, everything works fine. We wa...
Buzzell asked 22/3, 2016 at 7:42

1

We have scaled out all sevices in our system by having more than one instance of them registered in eureka service registry. Also, they are also proxied by a zuul server in the front. My question...
Kingsbury asked 7/3, 2016 at 2:51

2

Solved

While I am uploading large file(about 50 MB), I am getting org.eclipse.jetty.io.EofException: Early EOF excception. My jetty server version is "9.2.9.v20150224".Below is stack trace org.eclipse.je...
Mulley asked 28/1, 2016 at 13:59

© 2022 - 2024 — McMap. All rights reserved.