X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=enrichment-coordinator-service%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fenrichment%2Fcontrollers%2Fproducer%2FProducerCallbacks.java;h=45b44754025f11ffffc6669a0438f34890eaefee;hb=c760c62129b21c31243a331cf3c8f1963a1058a3;hp=e00ac74d61ea0406f821d8ff0aa6f6ef36fac109;hpb=530fa60a49e8f870cea442a338b148783fbe2ab7;p=nonrtric.git diff --git a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerCallbacks.java b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerCallbacks.java index e00ac74d..45b44754 100644 --- a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerCallbacks.java +++ b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/producer/ProducerCallbacks.java @@ -24,27 +24,26 @@ import com.google.gson.Gson; import com.google.gson.GsonBuilder; import java.lang.invoke.MethodHandles; +import java.time.Duration; import java.util.Collection; -import java.util.Vector; import org.oransc.enrichment.clients.AsyncRestClient; import org.oransc.enrichment.clients.AsyncRestClientFactory; import org.oransc.enrichment.configuration.ApplicationConfig; import org.oransc.enrichment.repository.EiJob; +import org.oransc.enrichment.repository.EiJobs; import org.oransc.enrichment.repository.EiProducer; -import org.oransc.enrichment.repository.EiTypes; +import org.oransc.enrichment.repository.EiProducers; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Component; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; +import reactor.util.retry.Retry; /** * Callbacks to the EiProducer */ -@Component @SuppressWarnings("java:S3457") // No need to call "toString()" method as formatting and string .. public class ProducerCallbacks { @@ -52,22 +51,20 @@ public class ProducerCallbacks { private static Gson gson = new GsonBuilder().create(); private final AsyncRestClient restClient; - private final EiTypes eiTypes; - @Autowired - public ProducerCallbacks(ApplicationConfig config, EiTypes eiTypes) { + public ProducerCallbacks(ApplicationConfig config) { AsyncRestClientFactory restClientFactory = new AsyncRestClientFactory(config.getWebClientConfig()); - this.restClient = restClientFactory.createRestClient(""); - this.eiTypes = eiTypes; + this.restClient = restClientFactory.createRestClientNoHttpProxy(""); } - public void notifyProducersJobDeleted(EiJob eiJob) { - ProducerJobInfo request = new ProducerJobInfo(eiJob); - String body = gson.toJson(request); - for (EiProducer producer : getProducers(eiJob)) { - restClient.post(producer.getJobDeletionCallbackUrl(), body) // - .subscribe(notUsed -> logger.debug("Job deleted OK {}", producer.getId()), // - throwable -> logger.warn("Job delete failed {}", producer.getId(), throwable.toString()), null); + public void stopEiJob(EiJob eiJob, EiProducers eiProducers) { + for (EiProducer producer : getProducersForJob(eiJob, eiProducers)) { + String url = producer.getJobCallbackUrl() + "/" + eiJob.getId(); + restClient.delete(url) // + .subscribe(notUsed -> logger.debug("Producer job deleted OK {}", producer.getId()), // + throwable -> logger.warn("Producer job delete failed {} {}", producer.getId(), + throwable.getMessage()), + null); } } @@ -77,38 +74,49 @@ public class ProducerCallbacks { * @param eiJob an EI job * @return the number of producers that returned OK */ - public Mono notifyProducersJobStarted(EiJob eiJob) { - return Flux.fromIterable(getProducers(eiJob)) // - .flatMap(eiProducer -> notifyProducerJobStarted(eiProducer, eiJob)) // + public Mono startEiJob(EiJob eiJob, EiProducers eiProducers) { + Retry retrySpec = Retry.fixedDelay(1, Duration.ofSeconds(1)); + return Flux.fromIterable(getProducersForJob(eiJob, eiProducers)) // + .flatMap(eiProducer -> postStartEiJob(eiProducer, eiJob, retrySpec)) // .collectList() // .flatMap(okResponses -> Mono.just(Integer.valueOf(okResponses.size()))); // } /** - * Calls one producer for an EiJob activation. + * Restart all jobs for one producer * - * @param producer a producer - * @param eiJob an EI job - * @return the body of the response from the REST call + * @param producer + * @param eiJobs */ - public Mono notifyProducerJobStarted(EiProducer producer, EiJob eiJob) { + public void restartEiJobs(EiProducer producer, EiJobs eiJobs) { + final int maxNoOfParalellRequests = 10; + Retry retrySpec = Retry.backoff(3, Duration.ofSeconds(1)); + + Flux.fromIterable(producer.getEiTypes()) // + .flatMap(type -> Flux.fromIterable(eiJobs.getJobsForType(type))) // + .flatMap(job -> postStartEiJob(producer, job, retrySpec), maxNoOfParalellRequests) // + .onErrorResume(t -> { + logger.error("Could not restart EI Job for producer: {}, reason :{}", producer.getId(), t.getMessage()); + return Flux.empty(); + }) // + .subscribe(); + } + + private Mono postStartEiJob(EiProducer producer, EiJob eiJob, Retry retrySpec) { ProducerJobInfo request = new ProducerJobInfo(eiJob); String body = gson.toJson(request); - return restClient.post(producer.getJobCreationCallbackUrl(), body) - .doOnNext(resp -> logger.debug("Job subscription started OK {}", producer.getId())) + return restClient.post(producer.getJobCallbackUrl(), body) // + .retryWhen(retrySpec) // + .doOnNext(resp -> logger.debug("Job subscription {} started OK {}", eiJob.getId(), producer.getId())) // .onErrorResume(throwable -> { logger.warn("Job subscription failed {}", producer.getId(), throwable.toString()); return Mono.empty(); }); } - private Collection getProducers(EiJob eiJob) { - try { - return this.eiTypes.getType(eiJob.typeId()).getProducers(); - } catch (Exception e) { - return new Vector<>(); - } + private Collection getProducersForJob(EiJob eiJob, EiProducers eiProducers) { + return eiProducers.getProducersForType(eiJob.getTypeId()); } }