Dmitry Shulga
d460f1689d
Fixed bug#11753187 (formerly known as bug 44585): SP_CACHE BEHAVES AS
...
MEMORY LEAK.
Background:
- There are caches for stored functions and stored procedures (SP-cache);
- There is no similar cache for events;
- Triggers are cached together with TABLE objects;
- Those SP-caches are per-session (i.e. specific to each session);
- A stored routine is represented by a sp_head-instance internally;
- SP-cache basically contains sp_head-objects of stored routines, which
have been executed in a session;
- sp_head-object is added into the SP-cache before the corresponding
stored routine is executed;
- SP-cache is flushed in the end of the session.
The problem was that SP-cache might grow without any limit. Although this
was not a pure memory leak (the SP-cache is flushed when session is closed),
this is still a problem, because the user might take much memory by
executing many stored routines.
The patch fixes this problem in the least-intrusive way. A soft limit
(similar to the size of table definition cache) is introduced. To represent
such limit the new runtime configuration parameter 'stored_program_cache'
is introduced. The value of this parameter is stored in the new global
variable stored_program_cache_size that used to control the size of SP-cache
to overflow.
The parameter 'stored_program_cache' limits number of cached routines for
each thread. It has the following min/default/max values given from support:
min = 256, default = 256, max = 512 * 1024.
Also it should be noted that this parameter limits the size of
each cache (for stored procedures and for stored functions) separately.
The SP-cache size is checked after top-level statement is parsed.
If SP-cache size exceeds the limit specified by parameter
'stored_program_cache' then SP-cache is flushed and memory allocated for
cache objects is freed. Such approach allows to flush cache safely
when there are dependencies among stored routines.
2012-01-25 15:59:30 +06:00
..
2010-01-28 22:33:00 -08:00
2012-01-16 16:39:05 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-11-05 14:16:27 +01:00
2010-11-05 14:16:27 +01:00
2010-11-05 14:16:27 +01:00
2010-11-05 14:16:27 +01:00
2011-01-14 14:21:46 +01:00
2011-01-14 14:21:46 +01:00
2011-01-14 14:21:46 +01:00
2011-01-14 14:21:46 +01:00
2010-02-03 03:06:42 +03:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2010-02-02 10:56:42 +03:00
2009-01-29 17:59:46 +01:00
2010-11-05 17:42:37 +00:00
2010-11-05 17:42:37 +00:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2010-02-24 13:15:34 +04:00
2009-12-22 10:35:56 +01:00
2010-02-24 13:15:34 +04:00
2009-01-29 17:59:46 +01:00
2010-02-24 13:15:34 +04:00
2009-12-22 10:35:56 +01:00
2010-02-24 13:15:34 +04:00
2008-12-19 16:03:32 +01:00
2010-02-24 13:15:34 +04:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2012-01-16 12:04:28 +02:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2010-11-08 16:30:26 +01:00
2009-12-22 10:35:56 +01:00
2010-08-06 15:29:37 +04:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-06-17 22:51:35 +02:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-01-29 17:59:46 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2010-08-06 15:29:37 +04:00
2009-12-22 10:35:56 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2012-01-10 11:41:50 +05:30
2009-12-22 10:35:56 +01:00
2010-11-11 11:25:03 +01:00
2010-01-06 11:54:45 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-08-09 11:32:50 +03:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-10-06 11:34:28 -03:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-10-09 15:34:07 +02:00
2008-12-19 16:03:32 +01:00
2010-11-11 11:25:03 +01:00
2008-12-19 16:03:32 +01:00
2009-01-29 17:59:46 +01:00
2010-11-08 16:30:26 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2010-05-25 10:36:06 +03:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2010-01-28 22:33:00 -08:00
2010-01-28 22:33:00 -08:00
2008-12-19 16:03:32 +01:00
2009-01-29 17:59:46 +01:00
2011-08-16 16:06:34 +05:30
2008-12-19 16:03:32 +01:00
2010-05-25 10:36:06 +03:00
2010-04-29 13:43:10 -04:00
2008-12-19 16:03:32 +01:00
2010-04-14 15:05:56 +03:00
2012-01-16 16:39:05 +02:00
2009-10-09 15:34:07 +02:00
2010-11-08 16:30:26 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-05-22 01:22:46 +05:00
2009-10-09 15:34:07 +02:00
2011-08-16 16:06:34 +05:30
2010-01-28 22:33:00 -08:00
2011-08-08 17:01:09 +05:30
2011-10-05 15:14:14 +02:00
2011-08-08 17:01:09 +05:30
2009-02-17 13:24:09 +01:00
2011-08-16 16:06:34 +05:30
2008-12-19 16:03:32 +01:00
2009-05-22 01:22:46 +05:00
2011-08-16 20:51:40 -07:00
2008-12-19 16:03:32 +01:00
2011-08-16 16:06:34 +05:30
2011-08-16 20:51:40 -07:00
2011-08-16 16:06:34 +05:30
2009-10-09 15:34:07 +02:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2011-08-16 16:06:34 +05:30
2011-01-18 09:24:52 +05:30
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2010-01-28 22:33:00 -08:00
2010-01-28 22:33:00 -08:00
2008-12-19 16:03:32 +01:00
2010-04-29 13:43:10 -04:00
2010-04-29 13:43:10 -04:00
2011-07-19 10:54:59 -04:00
2010-01-28 22:33:00 -08:00
2010-01-28 22:33:00 -08:00
2010-01-28 22:33:00 -08:00
2009-10-09 15:34:07 +02:00
2011-08-08 17:01:09 +05:30
2010-01-28 22:33:00 -08:00
2011-08-08 17:01:09 +05:30
2010-01-28 22:33:00 -08:00
2010-01-28 22:33:00 -08:00
2010-01-28 22:33:00 -08:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-01-07 11:22:45 +01:00
2009-02-17 13:24:09 +01:00
2010-01-28 22:33:00 -08:00
2012-01-16 16:39:05 +02:00
2010-04-29 13:43:10 -04:00
2010-01-28 22:33:00 -08:00
2010-01-28 22:33:00 -08:00
2010-01-28 22:33:00 -08:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2009-03-20 18:11:22 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-01-28 22:33:00 -08:00
2008-12-19 16:03:32 +01:00
2010-05-25 10:36:06 +03:00
2010-01-28 22:33:00 -08:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2009-10-09 15:34:07 +02:00
2009-01-29 17:59:46 +01:00
2010-02-11 11:23:39 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-01-29 17:59:46 +01:00
2009-12-22 10:35:56 +01:00
2010-03-05 14:08:21 +01:00
2010-03-05 14:08:21 +01:00
2010-03-05 14:08:21 +01:00
2010-03-05 14:08:21 +01:00
2010-03-05 14:08:21 +01:00
2009-12-22 10:35:56 +01:00
2010-11-11 11:25:03 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-01-28 22:33:00 -08:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-28 15:54:16 +03:00
2009-12-22 10:35:56 +01:00
2010-01-28 22:33:00 -08:00
2010-01-28 22:33:00 -08:00
2009-12-22 10:35:56 +01:00
2009-01-29 17:59:46 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-11-05 17:42:37 +00:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-01-28 22:33:00 -08:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2011-03-15 18:57:36 +06:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-01-29 17:59:46 +01:00
2009-12-22 10:35:56 +01:00
2009-01-29 17:59:46 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2011-11-15 22:00:14 +04:00
2011-11-15 22:00:14 +04:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2010-11-08 16:30:26 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 12:05:51 +01:00
2009-12-22 10:35:56 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2009-01-29 17:59:46 +01:00
2009-10-09 15:34:07 +02:00
2009-12-22 10:35:56 +01:00
2010-07-15 08:13:30 -03:00
2010-07-15 08:13:30 -03:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-01-28 22:33:00 -08:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-26 09:35:42 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2011-02-11 15:00:09 +01:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2010-01-06 22:42:07 -07:00
2011-10-19 23:44:17 +02:00
2009-12-22 10:35:56 +01:00
2011-08-16 11:08:10 +02:00
2011-08-16 11:08:10 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-01-28 22:33:00 -08:00
2010-01-28 22:33:00 -08:00
2009-12-22 10:35:56 +01:00
2010-08-09 11:32:50 +03:00
2010-02-04 12:14:51 -08:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-01-29 17:59:46 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2009-01-29 17:59:46 +01:00
2009-12-22 10:35:56 +01:00
2010-08-06 15:29:37 +04:00
2009-12-22 10:35:56 +01:00
2009-01-29 17:59:46 +01:00
2010-01-28 22:33:00 -08:00
2010-01-28 22:33:00 -08:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-10-09 15:34:07 +02:00
2010-01-28 22:33:00 -08:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-12-19 18:15:12 +01:00
2008-12-19 16:03:32 +01:00
2009-03-20 18:11:22 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2010-01-28 22:33:00 -08:00
2010-02-16 13:12:08 +03:00
2010-01-28 22:33:00 -08:00
2010-02-16 13:12:08 +03:00
2010-01-28 22:33:00 -08:00
2010-02-16 13:12:08 +03:00
2010-01-28 22:33:00 -08:00
2010-02-16 13:12:08 +03:00
2010-01-28 22:33:00 -08:00
2010-02-16 13:12:08 +03:00
2010-01-28 22:33:00 -08:00
2010-02-16 13:12:08 +03:00
2009-10-09 15:34:07 +02:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2010-12-16 11:49:40 +01:00
2010-12-16 11:49:40 +01:00
2010-05-12 14:42:39 +04:00
2010-04-16 16:10:47 +02:00
2010-09-21 11:16:20 +02:00
2009-12-22 10:35:56 +01:00
2010-11-22 14:10:44 -02:00
2010-02-21 15:10:52 +01:00
2009-12-22 10:35:56 +01:00
2010-04-20 11:32:39 +04:00
2010-04-20 11:32:39 +04:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-10-09 15:34:07 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2010-01-13 08:29:23 +00:00
2009-12-22 10:35:56 +01:00
2011-01-14 09:28:23 +01:00
2009-10-09 15:34:07 +02:00
2008-12-19 16:03:32 +01:00
2010-11-11 11:25:03 +01:00
2008-12-19 16:03:32 +01:00
2009-01-29 17:59:46 +01:00
2010-06-08 10:58:19 +02:00
2009-12-22 10:35:56 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2010-08-06 15:29:37 +04:00
2010-01-28 22:33:00 -08:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2010-01-28 22:33:00 -08:00
2010-07-08 14:36:10 +02:00
2010-03-18 13:38:29 +03:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2009-05-22 01:22:46 +05:00
2008-12-19 16:03:32 +01:00
2009-05-22 01:22:46 +05:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2010-06-17 22:51:35 +02:00
2012-01-25 15:59:30 +06:00
2009-12-22 10:35:56 +01:00
2009-10-09 15:34:07 +02:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2010-01-28 22:33:00 -08:00
2011-01-14 09:28:23 +01:00
2010-08-16 15:05:01 +02:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2009-10-09 15:34:07 +02:00
2009-12-22 10:35:56 +01:00
2009-03-20 18:11:22 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2010-11-08 16:30:26 +01:00
2008-12-19 16:03:32 +01:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2008-07-23 16:06:44 +02:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2010-05-25 10:36:06 +03:00
2009-12-22 10:35:56 +01:00
2009-12-22 10:35:56 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2008-12-19 16:03:32 +01:00
2009-12-22 10:35:56 +01:00
2011-01-14 09:28:23 +01:00
2008-12-19 16:03:32 +01:00