Francesco Nigro
Francesco Nigro
this still means @wburns this is no longer a blocker for you, wdyt?
Exactly, beacuse right now, given that we can schedule the next fire time only at millisecond granularity, we just schedule the batch required to cover for the current missing ones...
The answer here is more complex than it seems: it depends by the available cores to Hyperfoil and how the sessions are distributed among event loops (which should be a...
Hold on: allocated not initialized have some limits sadly, because Netty 4.1 cannot use MethodHandles (while Netty 4.2, yep 👍) and that's why on Netty there are limits when is...
Sorry @k-wall writing from phone is never a good idea :/ let me rephrase it a bit: - with 4.2 some Netty methods which were using reflection, will use MathodHandle,...
Adding https://github.com/lucamolteni/kroxylicious/commit/6f7172af4707dea6312b04ffffb56234274184dc for reference, because i see now that we have no options to reuse the same Netty buffer over and over again.
Another thing: I see on the flamegraphs that `Dek.Encryptor::encrypt` is using NIO `ByteBuffer` which I suppose are not backed by off-heap memory (from Netty's pooled buffers or any other): if...
Adding a note: one reason why I have introduced 6f7172af4707dea6312b04ffffb56234274184dc, was to enable form of buffer/sharing which can save the allocations mentioned in this issue to happen.