Hi, I'm trying to understand how Regions are being allocated and deallocated in Memtable. I can see that the same region is being used to allocate more size until the max region limit is hit. However, once the max limit is reached, the current region is set to null and eventually new Region gets allocated.
My question is if it possible for this filled region (which can be set to null) to have some valid data (from current memtable) which hasn't been flushed yet? How each memtable is mapped to these regions? Thanks, Preetika