Loïc Mathieu

Results 190 comments of Loïc Mathieu

@malys unfortunatly no, the reactive nature of Quarkus and it's specific classloader made it very difficult for quickperf to works on it. I tried multiple things without success.

> Do you know any alternative compatible with Quarkus? performance test oriented regression detection @malys you can ping me on twitter or via email to discuss this subject but I...

@coiouhkc no update so far, Quarkus has its own classloader and this causes challenge to integrate it with Quickperf. I need to find the time to think of a custom...

@jcunliffe1 this is a little more complex, the datasource is created in a different classloader than when the SQL queries are exectuted so the way we register the profile information...

@HasseNasse On Quarkus, there is PubSub support thanks to this extension: https://quarkiverse.github.io/quarkiverse-docs/quarkus-google-cloud-services/main/ @meltsufin maybe your team may be able to help contributing reactive messaging support for PubSub.

Sorry for not responding early. I have somewhere a prototype to provide helper methods for PubSub to avoid too much boilerplate and handle this kind of stuff. I'll have a...

@jfbenckhuijsen see https://github.com/quarkiverse/quarkus-google-cloud-services/pull/577 it provides a `QuarkusPubSub` that allow passing an emulator host to work with a PubSub emulator. It also provides convenience methods to creates topics, subscription, publisher, ......

Hi, Yes, it was on my TODO list to explain how to use this library as a foundation for supporting another Google library. The idea was to use as an...

It should work on any internal storage file indenpendently on the serialization used, as long as it can be split by line.

This is the method that trigger the exception: ```java @Slf4j @Validated @Controller("/api/v1/executions") public class ExecutionController { @Delete(uri = "/by-ids") @ExecuteOn(TaskExecutors.IO) @Operation(tags = {"Executions"}, summary = "Delete a list of executions")...