mitkama

Results 4 comments of mitkama

Once we disable this delay, our throughput reduction problem is solved and we are not seeing this issue anymore. But we need mechanism wherein the above code should work seam...

@cescoffier Yes, we are running in Quarkus. Despite supplying an external thread pool we are still observing the same behavior. `engineExecutorService = Executors .newFixedThreadPool(engineThreadPoolSize, new DefaultThreadFactory("worker"));` emitting on below thread...

@cescoffier We haven't supplied an external pool in that pipeline.

Can you try similar code logic `import io.smallrye.health.api.AsyncHealthCheck; import io.smallrye.mutiny.Uni; import org.eclipse.microprofile.health.HealthCheck; import org.eclipse.microprofile.health.HealthCheckResponse; import org.eclipse.microprofile.health.HealthCheckResponseBuilder; import org.eclipse.microprofile.health.Readiness; import javax.enterprise.context.ApplicationScoped; import javax.ws.rs.Produces; import java.util.concurrent.CompletableFuture; import java.util.concurrent.CompletionStage; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors;...