Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.4.4, 10.5.0
Description
InnoDB is leaking some memory for statically allocated objects. The leaks were caught by some changes to SAFEMALLOC that allow instrumenting operator new. I did not try to find out how to make AddressSanitizer report them.
The impact is small, because the few dozen bytes will be freed by the operating system when the process is terminated. But, because memory leaks can be a telltale sign of subsystems not being closed down properly, we prefer to fix them.
Attachments
Issue Links
- is caused by
-
MDEV-16264 Implement a common work queue for InnoDB background tasks
-
- Closed
-
-
MDEV-17380 innodb_flush_neighbors=ON should be ignored on SSD
-
- Closed
-
I agree that leak could be a too strong word for this. Some recovery-related memory in 10.5 was not being freed until shutdown. It was only a few hundred bytes, so this is not a big deal.
Still, I think that it is useful to fix anything found by any instrumentation, because I remember some occurrences where AddressSanitizer does not report memory leak details while SAFEMALLOC would.