Kevin Conaway
Kevin Conaway
@nicoulaj any update here?
We have a similar use case where we create a lot of immutable bitmaps in memory and only read from / iterate them. It would be great if there were...
No, for this use case we typically create a new `Bitmap`, add values to it and then never modify it again for its lifetime: ```go rb := roaring.New() rb.Add() rb.Add()...
>If you sum up GetSizeInBytes() on all bitmaps, you should get something close to your actual memory usage Apologies for the confusion, the main concern here is the number of...
> This would then set the standard sampling rate metric on the root span This works when the caller controls the start of the span. However, when the span is...
> why did you exclude the use of sampling priority? For some operations in our application, we want all of the traces to be sent (as in, the default sample...
I'm seeing the same thing. My (un)-educated guess is that this method in the `BAllocThread` is getting stuck: ``` java private void proactivelyHealPoison() { BSlot slot = live.poll(); if (slot...
@jhedider can you share how you were able to reproduce this locally?
Maybe @chrisvest has some insight.
Chris, apart form backing off of the reallocation, it seems like like the poision healing process should take in to account the expiration policy for the pool. We are defining...