LP wrote: > Getting this error- > > (message repeated 10000 times between 05/04/2011 07:29:25.597834 and > 05/04/2011 07:29:57.761248) > 05/04/2011 07:29:58.566243 LRU removed item from primary session > table needs DB update before being overwritten. > This is caused by setting the session cache size too small, increase it. > > [...] > <sessiontables> > conntracksize 738860 > memcachesize 14777216 > </sessiontables> >
Data about in-flight flows is first stored in a connection-tracking table (conntrack). conntrack is used to combine flows in each direction into a bi-directional session and update these active sessions as more flow data arrives. The "LRU removed item" message means that sessions in the conntrack table are being removed before they have finished updating. If you can increase the Memory Cache Size in InterMapper Flows, just do that. It looks like you have the cache size set to 2 GB. The memory cache size you assign is divided between conntrack table and the memcache using a fixed ratio. If you cannot increase the memory cache size (32-bit OS?), you will need to change the ratio of conntracksize to memcachesize. These values should use approximately the same amount of memory as your settings above, but double the allocation to conntracksize. <sessiontables> conntracksize 1477720 memcachesize 13622747 </sessiontables> -------------------- m2f -------------------- Read this topic online here: http://forums.dartware.com/viewtopic.php?p=3413#3413 ____________________________________________________________________ List archives: http://www.mail-archive.com/intermapper-talk%40list.dartware.com/ To unsubscribe: send email to: [email protected]
