buildmaster
7fcfceea42
Going back to snapshots
5 years ago
buildmaster
a6191e08f9
Update SNAPSHOT to 2.2.3.RELEASE
5 years ago
Olga Maciaszek-Sharma
da23fe4f07
Handle exceptions and timeouts new ( #767 )
...
* Handle timeouts and exceptions while retrieving instances.
* Update docs.
5 years ago
Olga Maciaszek-Sharma
87e5d7a62b
Fix execution thread for blocking and adjusts timing
...
* Fix execution thread for blocking DiscoveryClientServiceInstanceListSupplier.
* Desynchronise HealthCheck and Cache. Add info about using HealthCheck without Cache to docs.
See gh-760
5 years ago
Spencer Gibb
a10fbb9b07
Renames ServiceInstanceListSuppliers to ServiceInstanceListSupplierBuilder ( #761 )
...
Puts static builder() method on ServiceInstanceListSupplier.
Deprecates ServiceInstanceListSupplier.fixed(Environment) and replaces with fixed(serviceId).
5 years ago
Olga Maciaszek-Sharma
c998d69c66
Add predefined ServiceInstanceListSupplier configurations. 2nd part of gh-741. ( #758 )
5 years ago
Olga Maciaszek-Sharma
8dff101d6f
Lb configuration builders ( #751 )
...
* Adds ServiceInstanceListSuppliers.java with Builder
* Implement TODOs.
* Add javadocs.
* Remove unused type.
* Add test.
* Safer caching config: resolve LoadBalancerCacheManager lazily. Return delegate if LoadBalancerCacheManager not available.
* Switch to using builder in LoadBalancerClientConfiguration.
* Autoformatting with spring-java-format.
* Update docs.
Co-authored-by: Spencer Gibb <spencer@gibb.us>
5 years ago
Olga Maciaszek-Sharma
5f413a7297
Fix capitalisation.
5 years ago
Olga Maciaszek-Sharma
d27b59e6f6
Fix docs on Instance Health-Check for LoadBalancer. Fixes gh-746.
5 years ago
Ryan Baxter
bea81f7b51
Cherry picking commit 4119a9c
5 years ago
JinSoo Han
3863d389bb
Typo correction in document ( #708 )
...
Co-authored-by: jinsoohan <jinsoo.han@gmail.com>
5 years ago
buildmaster
86d9fc762f
Bumping versions to 2.2.3.BUILD-SNAPSHOT after release
5 years ago
buildmaster
f18c131bb8
Going back to snapshots
5 years ago
buildmaster
562088c03d
Update SNAPSHOT to 2.2.2.RELEASE
5 years ago
Spencer Gibb
69a8cece5f
Ensures HikariDataSource is never re-bound.
...
Removes HikariDataSource from extra-refreshable and adds it to a new property never-refreshable.
ConfigurationPropertiesRebinder now checks that property and does not rebind beans whose class is in never-refreshable.
fixes gh-687
5 years ago
Olga Maciaszek-Sharma
070e0a8518
Add info on SimpleDiscoveryClient in the docs. Remove redundant param. ( #684 )
...
* Add info on SimpleDiscoveryClient in the docs. Remove redundant parameter.
* Remove warning after discussion.
5 years ago
Olga Maciaszek-Sharma
47a810606d
Fix gh 629 new ( #683 )
...
* Swaps deprecated ConditionalOnEnabledEndpoint for updated annotation.
Swaps with ConditionalOnAvailableEndpoint
* Migrates to new OutputCaptureRule
* Migrates to new OutputCaptureRule
* Add health check loadBalancing implementation.
* Make isAlive() method protected.
Co-authored-by: Spencer Gibb <spencer@gibb.tech>
5 years ago
Spencer Gibb
eac5cde53a
Removes unused branches
5 years ago
Marcin Grzejszczak
b6ddff7d2e
Added 2.2.x to the list of whitelisted branches
5 years ago
Toshiaki Maki
d7767a058a
Add once method for Customizer of circuit breaker ( #626 )
...
* Add Customizer.once
* Make the logic of Customer.once atomic
* Add document on how to use once method
5 years ago
Ryan Baxter
61ba39ee11
Fix broken links. Fixes #663
5 years ago
buildmaster
080cd374fc
Bumping versions
5 years ago
buildmaster
2e40fcec41
Bumping versions to 2.2.2.BUILD-SNAPSHOT after release
5 years ago
buildmaster
980ce49895
Going back to snapshots
5 years ago
buildmaster
f533ef1553
Update SNAPSHOT to 2.2.1.RELEASE
5 years ago
Olga Maciaszek-Sharma
8c054083cc
Use configuration properties instead of environment. ( #662 )
...
* Use configuration properties instead of environment.
* Fix after review.
5 years ago
Olga Maciaszek-Sharma
75338cde79
Zoned ServiceInstanceListSupplier ( #658 )
...
* Get ServiceInstance zone from metadata.
* Add ZonePreferenceServiceInstanceListSupplier.
* Add javadocs and license entries.
* Add tests.
* Add documentation.
* Documentation fix.
* Fix after code review.
5 years ago
Ryan Baxter
b7bef1d3e0
Added clarification to documentation on where to set spring.profiles.active. Fixes #612
5 years ago
Jay Bryant
359dd79aac
Making the Load Balancer and Circuit Breaker sections consistent ( #646 )
...
I edited the Load Balancer and Circuit Breaker sections to make them be consistent with the rest of the document. I tinkered with some other things while I was at it.
5 years ago
srempfer
70129ecc07
Introduced property 'spring.cloud.bootstrap.additional-location' according to 'spring.config.additional-location' ( #466 )
5 years ago
buildmaster
8ab3c2723a
Bumping versions to 2.2.1.BUILD-SNAPSHOT after release
5 years ago
buildmaster
a70b9f30bd
Going back to snapshots
5 years ago
buildmaster
a20cde9672
Update SNAPSHOT to 2.2.0.RELEASE
5 years ago
Olga Maciaszek-Sharma
da0e06eb7a
Add evictor based loadbalancer caching ( #644 )
...
* Add Evictor dependency. Implement EvictorCache.
* Add EvictorBasedLoadBalancerCacheManager. Add evictor to starter.
* Set caffeine InitialCapacity from properties.
* Add tests. Add javadocs. Fix creating multiple cache instances.
* Reformat. Change property name. Add documentation.
* Add more tests.
* Move evictor version to parent. Add more tests.
* Ignore .flattened-pom.xml.
* Encapsulate Evictor and switch to non-evictor specific class naming.
* Adjust the docs.
* Fix after code review.
5 years ago
buildmaster
05d936803f
Bumping versions
5 years ago
Olga Maciaszek-Sharma
1ddeca4a8e
Switch to Spring Boot String to Duration conversion.
5 years ago
Olga Maciaszek-Sharma
bf6b31ee8a
caffeine cache for loadbalancer Fix gh 638 ( #643 )
...
* Add Caffeine-based loadBalancerCacheManager.
* Add more tests.
* Fix test.
* Only enable loadBalancer caching if caffeine is on classpath. Warn if
caffeine is not on classpath.
* Add javadocs.
* Add docs. Change property name.
* Fix configuration.
* Fix after code review. Add another constructor to CaffeineBasedLoadBalancerCacheManager,
allowing to pass cache name, in order to support alternative ServiceInstanceListSupplierImplementations.
5 years ago
Ryan Baxter
fe86020456
Added docs about using multiple LoadBalanced WebClient objects. Fixes #387
5 years ago
buildmaster
4bd752192c
Bumping versions to 2.1.5.BUILD-SNAPSHOT after release
5 years ago
buildmaster
178395f6c9
Going back to snapshots
5 years ago
buildmaster
4bba3d1a80
Update SNAPSHOT to 2.1.4.RELEASE
5 years ago
buildmaster
80a9a38712
Going back to snapshots
5 years ago
buildmaster
9ec71f275e
Update SNAPSHOT to 2.2.0.RC2
5 years ago
buildmaster
efcb959e8c
Bumping versions
5 years ago
Olga Maciaszek-Sharma
b85e8a23cc
Minor doc fixes.
5 years ago
buildmaster
8e2374140a
Going back to snapshots
5 years ago
buildmaster
338649716f
Update SNAPSHOT to 2.2.0.RC1
5 years ago
Olga Maciaszek-Sharma
ffecfb7d0b
Add Spring Cloud LoadBalancer section to docs. ( #624 )
5 years ago
Olga Maciaszek-Sharma
092960e26e
Fix Spring Cloud CircuitBreaker docs level offset.
5 years ago
buildmaster
dd08f97b93
Going back to snapshots
5 years ago