Configure different event loop group for each client
I have following Micronaut configuration to have a separate event loop group for client-a, because the calls to client-a are taking some time to return response and this is affecting performance of other client.
How to use Flux or Publisher as input to Micronaut HttpClient
It is required to “upload” a programmatically generated Content-type: text/csv using HTTP PUT. The content might be large and it is not desired to store the entire content in memory at any given time. I am trying to use a low-level HttpClient
for this.
I was able to find some hints that this might be allowed 1, 2.