Switch ServiceInstanceListSupplier to use Flux. Add implementation with

delayed list. Add subscriber-based resetting instances.
This commit is contained in:
Olga Maciaszek-Sharma
2019-09-16 15:55:31 +02:00
parent 3c310a819d
commit 52c5b9e264
4 changed files with 24 additions and 11 deletions

View File

@@ -1,9 +1,10 @@
package org.springframework.cloud.loadbalancer.core;
import java.time.Duration;
import java.util.List;
import java.util.stream.Collectors;
import reactor.core.publisher.Mono;
import reactor.core.publisher.Flux;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.core.env.Environment;
@@ -26,14 +27,19 @@ public class DiscoveryClientServiceInstanceListSupplier implements ServiceInstan
}
@Override
public Mono<List<ConnectionTrackingServiceInstance>> get() {
List<ConnectionTrackingServiceInstance> instances = this.delegate
public Flux<List<ConnectionTrackingServiceInstance>> get() {
//FIXME: sensible defaults + config
return Flux.just(getInstances())
.delayElements(Duration.ofMinutes(5));
}
private List<ConnectionTrackingServiceInstance> getInstances() {
return this.delegate
.getInstances(this.serviceId)
.stream()
// switch to a more sensible conversion
.map(serviceInstance -> (ConnectionTrackingServiceInstance) serviceInstance)
.collect(Collectors.toList());
return Mono.just(instances);
}
public String getServiceId() {

View File

@@ -37,12 +37,18 @@ public class PowerOfTwoChoicesPOCLoadBalancer implements ReactorServiceInstanceL
resetInstances();
}
// private void resetInstances() {
// Schedulers.fromExecutorService(Executors.newSingleThreadScheduledExecutor())
// .schedulePeriodically(() -> instances = serviceInstanceListSupplier
// // maybe we don't have to block at all?
// // TODO: sensible interval defaults + config
// .getIfAvailable().get().next().block(), 0, 10, TimeUnit.MINUTES);
// }
private void resetInstances() {
Schedulers.fromExecutorService(Executors.newSingleThreadScheduledExecutor())
.schedulePeriodically(() -> instances = serviceInstanceListSupplier
// maybe we don't have to block at all?
// TODO: sensible interval defaults + config
.getIfAvailable().get().block(), 0, 10, TimeUnit.MINUTES);
serviceInstanceListSupplier.getIfAvailable()
.get()
.subscribe(connectionTrackingServiceInstances -> instances = connectionTrackingServiceInstances);
}
// TODO: optimise

View File

@@ -48,6 +48,7 @@ public class RoundRobinListLoadBalancer implements ReactorServiceInstanceLoadBal
// TODO: move supplier to Request?
ServiceInstanceListSupplier<ServiceInstance> supplier = this.serviceInstanceListSupplier.getIfAvailable();
return supplier.get()
.next()
.map(instances -> {
if (instances.isEmpty()) {
log.warn("No servers available for service: " + this.serviceId);

View File

@@ -3,14 +3,14 @@ package org.springframework.cloud.loadbalancer.core;
import java.util.List;
import java.util.function.Supplier;
import reactor.core.publisher.Mono;
import reactor.core.publisher.Flux;
import org.springframework.cloud.client.ServiceInstance;
/**
* @author Olga Maciaszek-Sharma
*/
public interface ServiceInstanceListSupplier<T extends ServiceInstance> extends Supplier<Mono<List<T>>> {
public interface ServiceInstanceListSupplier<T extends ServiceInstance> extends Supplier<Flux<List<T>>> {
String getServiceId();
}