[Tarantool-patches] [PATCH] region: do not rotate slabs in case of single slab purification

Vladislav Shpilevoy v.shpilevoy at tarantool.org
Thu Feb 6 23:48:21 MSK 2020


Hi! Thanks for the patch!

On 06/02/2020 18:14, Nikita Pettik wrote:
> Imagine following situation at the moment of region truncation:
> 
>        1 slab      2 slab/HEAD
>      x of s1 used  y of s2 used
>      +---------+   +---------+
> ...->|xx|      |-->|yyyyyy|  |--> NULL
>      |xx|      |   |yyyyyy|  |
>      +---------+   +---------+
> 
> And region is going to be truncated by size y (i.g.
> region_truncate(&region, region_used() - y)). After this operation
> second slab will remain empty (slab.used == 0). Currently, this slab is
> returned back to the slab cache, which leads to slab rotation. This may
> not be useful in terms of performance, especially for requests which
> don't abuse region memory (for instance, SQL queries) but do call
> region_truncate() intensively. For example, during transfer tuples to
> ephemeral table truncate() is called for each tuple. What is more,
> truncate is also called on each returned tuple in sql_row_to_port()
> (see runtime_tuple_new()).

I understand the point about perf and slab oscillation, but
don't see how is it related to the tests.

> Also, taking into consideration revert of 67d7ab4 (see 81dda5b) this may
> lead to memory usage fluctuations: region memory in use before query
> execution and after may not be the same.

Yeah, but your patch does not fix that. It is a bigger problem.
Region does not free its slabs even at fiber_gc() if their total
size is small enough. So how is this related to memory fluctuations?

> For instance: total region memory
> in usage is x, but the first slab (head) is empty (since between
> requests region_reset() is called). During query execution
> region_truncate() is called and first slab is put back to the slab
> cache. Now another slab forms head of slab list, but there's no
> guarantee that its size is 0 (since slab's sizes are not zeroed on
> reset).

How slab size can be 0? You mean 'used' size? In that case it is
zeroed in reset. Otherwise I am missing something.

> As a result, total region memory may change (decrease) due to
> slab rotation. It is likely to be misleading for users and in particular
> for our testing system: to detect region memory leak cases, we have
> nothing to do but restart Tarantool instance each time before test.

>From what I see, this patch makes region keep slab more often. It does
not free them more aggressively or something. So how is it going to fix
the slab leak or at least make it less severe?

> ---
> Branch: https://github.com/tarantool/small/tree/np/dont-rotate-region-on-truncate
> 
>  small/region.c |  2 +-
>  test/region.c  | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 70 insertions(+), 1 deletion(-)


More information about the Tarantool-patches mailing list