The DefaultAuditBulker responsible to accumulate events and to flush them by bulk has a performance issue on concurrency.
The offer method relies on a ConcurrentLinkedList.size() which is very slow depending on the number of items.
When the queue is full and on heavy concurrency the result is a bottleneck,
that need to be removed.