Turar
Turar

Reputation: 1561

Spring Cloud Eureka with Config Server

What is the recommended configuration when running both Config Server with Eureka Server? Should Config Server be a client of Eureka? Or should Eureka be dependent on Config Server properties for its configuration? Or is both OK?

Upvotes: 19

Views: 18575

Answers (4)

Mideel
Mideel

Reputation: 829

EDIT1: I think this is a wrong answer, see the replies

If you use Spring Boot:

I'm using Spring Microservices in Action as my guide book and based on the source code example there, we make the configuration server as the Eureka Client with the @EnableEurekaClient annotation and in the config server application.yml, we need to add this property:

spring: 
  cloud: 
    config: 
      discovery: 
        enabled: true

And in the other Eureka client that uses this config server, you need to add this property to the application.yml :

spring: 
  cloud: 
    config: 
      enabled: true

That's it, just set up the config server normally, I think behind the scene the config libraries from spring cloud will take care of the rest using Eureka.

Upvotes: 3

George
George

Reputation: 3030

Based on @Mideel's answer

Eureka and Config Client configuration (needs to be Bootstrap):

# bootstrap.yml
cloud:
    config:
      discovery:
        enabled: true # This is required
        service-id: configserver # Config Server's eureka registry name
      enabled: true # This is default true already

Config Server configuration:

spring:
  application:
    name: configserver # Needs to match client configuration

Register the Config Server with the annotation @EnableEurekaClient (it should be Auto Configured to register with Eureka already though)

Upvotes: 6

The default way to use Eureka and Config Server is to use Config First bootstrap. Essentially, you make eureka server a client of the config server but you don't make the config server a client of eureka.

As said by David Syer on these (and this) issues, the founder of spring cloud, you have to use the config server with a front end load balancer, so a single URL is already highly available.

I'm also a newbie in Spring Cloud but I agree with him since Eureka is a Service Discovery, IMHO it should function on it's problem domain only. It would make a complicated logic for Eureka servers who are asking the Config servers for it's configuration. I can't imagine how the Eureka Server would know which config server to get if the Config Server is also the Server of Eureka to get its list of defaultZone.

It would be much more simpler for me to separate the Config Server's HA.

Upvotes: 10

Mark Heckler
Mark Heckler

Reputation: 126

The Spring Cloud Config service provides configuration info for various other microservices, of which the Eureka service is one.

Each app/microservice is pointed to its configuration (from the Config service) via bootstrap.properties/.yml, which is loaded in the parent context for that application, before the app "recognizes" that it is a discovery/Eureka client per its annotated main class. This bit of documentation provides a bit more detail on that process.

Cheers, Mark

Upvotes: 5

Related Questions