Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
troubleshooting:memory [2011/02/04 20:20] – 85.178.105.99 | troubleshooting:memory [2011/10/06 12:03] (current) – [How to handle it] 83.136.33.3 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Troubleshooting "out of memory" | ||
+ | |||
+ | [color=red]What to do if "out of memory" | ||
+ | |||
+ | ===== Potential causes ===== | ||
+ | |||
+ | There are two cause that may lead to memory starvation: | ||
+ | |||
+ | a) a small pool of memory - the configured memory is not enough and no more memory can be allocated. | ||
+ | |||
+ | b) memory leak - some memory id not properly freed, making all the memory unavailable (not used, but still allocated) | ||
+ | |||
+ | ===== Determining the cause ===== | ||
+ | |||
+ | If the memory starvation is because of a too small pool of memory, by stopping the traffic on the proxy (without stopping the proxy), the allocated memory will be freed in time (as transactions and location records are freed). | ||
+ | TEST: wait ~ 20 minutes without any kind of load the proxy. Test the proxy by placing several calls; if the memory erros pop up again once the traffic is resumed, it means it's a memory leak somewhere; If not sure of the result, consider it's a memory leak. | ||
+ | |||
+ | ===== How to handle it ===== | ||
+ | |||
+ | If the memory pool is too small, just go in config.h and increase the size of the memory pool - for SHM or PKG. | ||
+ | |||
+ | If it is about a memory leak, you need to compile the debug support into memory manager. To do so, follow the next steps: (Note: 3.1 release has memory debug enabled by default. Check if your binary has already support by " | ||
+ | |||
+ | 1. edit Makefile.defs file and remove from the DEFS string the F_MALLOC define (delete " | ||
+ | |||
+ | 2. recompile everything | ||
+ | |||
+ | 3. set memlog=1 in your configuration script (to get the memory messages the " | ||
+ | |||
+ | 4. restart your proxy | ||
+ | |||
+ | Now, you may check the memory status in two situations: | ||
+ | |||
+ | 1. **At shutdown** - just stop the proxy - the memory manager will dump the memory status. Normally most of the memory is cleaned during shutdown. If there is memory leak, it should be visible as not-freed memory. A memory status looks like: | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | 2. **At run time** - you may check the memory status by sending SIGUSR1 signal to the process (do "kill -SIGUSR1 OPENSER_PID" | ||
+ | |||
+ | If you have no clue how to interpret the logs for memory status, post it on a FTP or HTTP server and send the link on the devel@lists.kamailio.org mailing list. | ||
+ | |||
+ | With 3.x versions, you have to load ctl and cfg_rpc modules and execute: | ||
+ | |||
+ | < | ||
+ | sercmd cfg.set_now_int core mem_dump_pkg <pid> | ||
+ | </ | ||
+ | |||
+ | Along with the processing of first SIP message coming to that PID, you get the status of pkg memory in syslog. | ||
+ | |||
+ | ===== Walking through PKG with gdb ===== | ||
+ | |||
+ | Print used chunks of the first 2000 to 10000 if compiled with PKG debug mode: | ||
+ | |||
+ | < | ||
+ | set $i=0 | ||
+ | set $a = mem_block-> | ||
+ | while($i< | ||
+ | if($i> | ||
+ | if($a-> | ||
+ | p *$a | ||
+ | end | ||
+ | end | ||
+ | set $a = ((struct qm_frag*)((char*)($a)+sizeof(struct qm_frag)+((struct qm_frag*)$a)-> | ||
+ | set $i = $i + 1 | ||
+ | end | ||
+ | |||
+ | </ | ||
+ | |||
+ | ===== Troubleshooting Stuff ===== | ||
+ | |||
+ | {{indexmenu> |