I take my calculator.
According to the info output:
RSS = 145 208 041 472
Let's remove the memory used by Redis.
It is used_memory_peak, multiplied by mem_fragmentation_ratio,
since we need to account also the fragmentation overhead (here: 6%)
RSS - used_memory_peak * mem_fragmentation_ratio
= 660 066 539
Now if you remove memory managed by the kernel itself, like the
page allocation table (at least 256 MB), or the socket buffers
(up to 2*128K per connection if you use pipelining a bit aggressively),
I don't think a huge amount of unexplained memory remains.
Supposing the memory fragmentation is stable, the RSS should not
increase much more than its current level.
Regards,
Didier.