Updated at September 7, 2026 01:25 PM
tuple_object.info()
Get information about the tuple memory usage.
Returns a table with the following fields:
data_size— size of MessagePack data in the tuple. This number equals to number returned by box_tuple-bsize.header_size- size of the internal tuple header.field_map_size— size of the field map. Field map is used to speed up access to indexed fields of the tuple.waste_size— amount of excess memory wasted due to internal fragmentation in the slab allocator.arena- type of the arena where the tuple is allocated. Possible values are:memtx,malloc,runtime.
Returns
tuple memory usage statistics
Return type
table
Example
tarantool> box.space.tester:get('222200000'):info()---- data_size: 55waste_size: 95arena: memtxfield_map_size: 4header_size: 6...