Questions tagged [netflix-archaius]

Archaius is a configuration management library with a focus on Dynamic Properties sourced from multiple configuration stores.

Archaius is a configuration management library with a focus on Dynamic Properties sourced from multiple configuration stores.

https://github.com/Netflix/archaius/wiki

26 questions
6
votes
0 answers

Spring Cloud with Archaius

I'm having a hard time to understand how to use Netflix Archaius with Spring Boot Config. I have a a microservice that gets the configuration from a Spring Cloud Config Server but I would like to have the configuration automatically refreshed when…
Oreste
  • 436
  • 1
  • 6
  • 16
5
votes
0 answers

Spring bean reload with Archaius

I'm trying to use Archaius with my Spring application to reload dynamic system properties without having to do a full restart of the application. I'm planning on implementing this using Archaius' callback mechanism. Once Archaius detects a change,…
5
votes
3 answers

Netflix archaius cannot read updated property file value

I am a very much new to Netflix archaius. I have a code snippet which reads Java property file and prints property value. When this program runs it prints the value of property named "Fields" from testproperty.properties file. Now while this…
4
votes
0 answers

Externalize configuration of Spring Boot microservices using Netflix Archaius with config files in github repo

I have recently been given a task to externalize the configuartions of springboot microservices using Netflix archaius. I had gone through the official Wiki page of Netflix-Archaius but it does list some features such as storing Configuration file…
Jerrin Thomas
  • 269
  • 3
  • 14
4
votes
3 answers

Memory Leak Issue with spring-cloud-starter-hystrix and spring-cloud-starter-archaius integration

We are using spring-cloud-starter-hystrix with spring-cloud-starter-archaius where we are unable to stop the poolingconfigurationSource thread of archaius once the war is un-deployed. But spring-cloud-starter-archaius is working fine without hystrix…
Ashish Patel
  • 507
  • 1
  • 7
  • 14
4
votes
1 answer

Property change listener for Archaius

I'm using Archaius to keep system properties aligned between all the servers hosting my app. I can see all the property getters can take a callback to be called whenever that property changes (for instance see the third argument in…
Cameron
  • 1,868
  • 3
  • 21
  • 38
2
votes
0 answers

Hystrix threadpool maximumSize, coreSize and allowMaximumSizeToDivergeFromCoreSize not working?

I've set hystrix threadpool configuration as - coreSize=10, maximumSize=100 and allowMaximumSizeToDivergeFromCoreSize=true for the command key. I deployed the application but it's rejecting the threads when QPS is high - Caused by:…
2
votes
1 answer

Simple Netflix Archaius dynamic configuration example does not work with local files

public static void main(String[] args) throws InterruptedException { DynamicStringProperty property = DynamicPropertyFactory.getInstance().getStringProperty("prop", "test"); while (true) { System.out.println(property.get()); …
Sophia Tao
  • 27
  • 3
2
votes
0 answers

Netflix archaius 2 manual

Does anyone know how to initialise Netflix archaius version 2? In version 1, you can pass a system property to setup the configuration source: -Darchaius.configurationSource.additionalUrls=file:///apps/myapp/application.properties However, no such…
Daniel Scott
  • 7,418
  • 5
  • 39
  • 58
2
votes
1 answer

Netflix Arcaius serving as config service for multiple Spring Boot micro-services

I'm having a problem with how to use just Netflix Archaius to work as a config server for multiple Spring Boot microservices. Previously when I applied Eureka and Spring Cloud Config Server in my multiple-services project built with Spring Boot,…
chrisqx
  • 71
  • 1
  • 1
  • 3
2
votes
0 answers

Spring Boot: Load Configuration run-time from dynamoDB

As shown in the below documentation there are several ways to externalize Configuration, http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html However, I am dealing with a special case where spring boot…
2
votes
0 answers

Netflix Governator configure with Archaius Configuration Provider

I want to configure a governator-powered project, with the Archaius Configuration Provider. I am using Governator version 1.10.5. I had a look on how to configure an ArchaiusConfigurationProvider, which is described here. My use case is that I…
cristi.calugaru
  • 571
  • 10
  • 22
1
vote
0 answers

Netflix Archaius Scala API and yaml file

I'm using Netflix/Archaius library for configuration management of scala/spark job. currently my property files are in the java properties format like…
venBigData
  • 600
  • 1
  • 8
  • 23
1
vote
0 answers

When to use spring Boot config server and Netflix archaius?

I am new in microservice architecture. Can anyone please provide use cases like when to use spring Boot config server over the Netflix archaius and vise versa? What is the exact difference between them ? Looking forward to your prompt…
Ashish Patel
  • 507
  • 1
  • 7
  • 14
1
vote
1 answer

Can you change and manually reload property using archaius?

I've two questions about archaius: 1) Can I change the value of one property inside a local properties file using archaius? - I think i must do that manually without archaius. 2) When I've manually changed the value of my property inside my…
Robboso
  • 15
  • 5
1
2