search for: vmrss

Displaying 17 results from an estimated 17 matches for "vmrss".

Did you mean: vmrs
2009 Mar 31
1
Memory Leak when using winsock.shutdown ?
I'm using Wine 1.0 on Puppy Linux 3.01 I wrote an application with a http-server and a socket-server for windows and I like to use this on linux. (Delphi with Indy components) My application works fine on windows without any memory leak. But running with wine the VmRSS-value is permanently increased. I use following bash-script to check this: Code: while true; do cat /proc/"`pidof tcpc`"/status|grep -E "VmRSS";sleep 5; done Result: VmRSS: 4084 kB VmRSS: 4084 kB VmRSS: 4084 kB VmRSS: 4084 kB VmRSS: 4104 kB VmRS...
2009 Jun 06
1
Memory Leak when using winsock.shutdown ?
I'm using Wine 1.1.18 on Puppy Linux 3.01 I wrote an application with a http-server and a socket-server for windows and I like to use this on linux. (Delphi with Indy components) My application works fine on windows without any memory leak. But running with wine the VmRSS-value is continual increased. I use following bash-script to check this: Code: while true; do cat /proc/"`pidof tcpc`"/status|grep -E "VmRSS";sleep 5; done Result: VmRSS: 4084 kB VmRSS: 4084 kB VmRSS: 4084 kB VmRSS: 4084 kB VmRSS: 4104 kB VmRSS:...
2007 Oct 22
2
pam_ldap.so memory leaks?
...e is a rather large user base here. The current setup is using passdb pam with blocking=yes, with pam_ldap.so handling most authentication (although in special cases I am using a custom written pam module which I have disabled to eliminate as the source of the leak). The dovecot-auth process' VmRSS size grows by 4k per request and has a limit of 256megs. Unfortunately turning blocking=yes off isn't an option. The reason I must have it turned on is that the custom pam module is changing the username on specific requests. I am trying to pinpoint the memory leak (pam_ldap is my biggest suspe...
2015 Mar 17
2
Reduce memory peak when serializing to raw vectors
...w vector: df <- data.frame(runif(50e6,1,10)) ser <- serialize(df,NULL) In this example the data frame and the serialized raw vector occupy ~400MB each, for a total of ~800M. However the memory peak during serialize() is ~1.2GB: $ cat /proc/15155/status |grep Vm ... VmHWM: 1207792 kB VmRSS: 817272 kB We work with very large data frames and in many cases this is killing R with an "out of memory" error. This is the relevant code in R 3.1.3 in src/main/serialize.c:2494 InitMemOutPStream(&out, &mbs, type, version, hook, fun); R_Serialize(object, &out); val =...
2013 Jul 24
1
Cpus_allowed_list issue in RHEL6.4
...ot at localhost bin]# cat /proc/1/status Name: init State: S (sleeping) Tgid: 1 Pid: 1 PPid: 0 TracerPid: 0 Uid: 0 0 0 0 Gid: 0 0 0 0 Utrace: 0 FDSize: 64 Groups: VmPeak: 19364 kB VmSize: 19356 kB VmLck: 0 kB VmHWM: 1544 kB VmRSS: 1544 kB VmData: 328 kB VmStk: 88 kB VmExe: 140 kB VmLib: 2348 kB VmPTE: 52 kB VmSwap: 0 kB Threads: 1 SigQ: 1/256326 SigPnd: 0000000000000000 ShdPnd: 0000000000000000 SigBlk: 0000000000000000 SigIgn: 0000000000001000 SigCgt: 00000001a0016623 CapIn...
2015 Mar 17
2
Reduce memory peak when serializing to raw vectors
...In this example the data frame and the serialized raw vector occupy > ~400MB each, for a total of ~800M. However the memory peak during > serialize() is ~1.2GB: > > > > $ cat /proc/15155/status |grep Vm > > ... > > VmHWM: 1207792 kB > > VmRSS: 817272 kB > > > > We work with very large data frames and in many cases this is killing R > with an "out of memory" error. > > > > This is the relevant code in R 3.1.3 in src/main/serialize.c:2494 > > > > InitMemOutPStream(&out, &mb...
2017 Jul 01
3
integrating samba with pam
On Sat, 1 Jul 2017 16:30:25 +0100, Rowland Penny via samba wrote: > On Sat, 01 Jul 2017 11:48:21 -0300 > Guido Lorenzutti via samba wrote: > >> Hi there! I been using samba3 with ldap for years, and now im about to move to samba4 to leave the slapd. > > I take it you mean that you use Samba as an AD DC Exactly. >> I didnt try yet to migrate the directory from
2005 Jun 28
3
Possible Samba Memory Leak
...C. We have a test application which will basically write, then read back and compare data files on the disk. The problems we see occur when we try using just over 3500 small files (< 10k each). It seems that after about 200 or so iterations of this test, we start to see the smbd process's VmRss size grow. Once it starts growing, it continues to grow until an Out of Memory condition occurs, somewhere around 270 iterations. We've tried this same test on the following versions of samba as well, and received the same result: samba-2.2.7a samba-2.2.8 samba-2.2.12 Here's our smb.con...
2015 Mar 17
0
Reduce memory peak when serializing to raw vectors
...e6,1,10)) > ser <- serialize(df,NULL) > > In this example the data frame and the serialized raw vector occupy ~400MB each, for a total of ~800M. However the memory peak during serialize() is ~1.2GB: > > $ cat /proc/15155/status |grep Vm > ... > VmHWM: 1207792 kB > VmRSS: 817272 kB > > We work with very large data frames and in many cases this is killing R with an "out of memory" error. > > This is the relevant code in R 3.1.3 in src/main/serialize.c:2494 > > InitMemOutPStream(&out, &mbs, type, version, hook, fun); > R_...
2015 Mar 17
0
Reduce memory peak when serializing to raw vectors
...w vector: df <- data.frame(runif(50e6,1,10)) ser <- serialize(df,NULL) In this example the data frame and the serialized raw vector occupy ~400MB each, for a total of ~800M. However the memory peak during serialize() is ~1.2GB: $ cat /proc/15155/status |grep Vm ... VmHWM: 1207792 kB VmRSS: 817272 kB We work with very large data frames and in many cases this is killing R with an "out of memory" error. This is the relevant code in R 3.1.3 in src/main/serialize.c:2494 InitMemOutPStream(&out, &mbs, type, version, hook, fun); R_Serialize(object, &out); val =...
2005 Oct 10
0
process sigblk
...the below info: what signal is SigBlk indicating? THanks, Jerry ------------ State: S (sleeping) Tgid: 11542 Pid: 11542 PPid: 1 TracerPid: 0 Uid: 0 0 0 0 Gid: 0 0 0 0 FDSize: 256 Groups: 0 1 2 3 4 6 10 VmSize: 4888 kB VmLck: 0 kB VmRSS: 1944 kB VmData: 692 kB VmStk: 112 kB VmExe: 1220 kB VmLib: 2336 kB SigPnd: 0000000000000000 SigBlk: 0000000080000000 SigIgn: 8000000000000000 SigCgt: 00000003fffbfeff CapInh: 0000000000000000 CapPrm: 00000000fffffeff CapEff: 00000000fffffeff
2015 Mar 17
0
Reduce memory peak when serializing to raw vectors
...xample the data frame and the serialized raw vector occupy ~400MB each, for a total of ~800M. However the memory peak during serialize() is ~1.2GB: >> > >> > $ cat /proc/15155/status |grep Vm >> > ... >> > VmHWM: 1207792 kB >> > VmRSS: 817272 kB >> > >> > We work with very large data frames and in many cases this is killing R with an "out of memory" error. >> > >> > This is the relevant code in R 3.1.3 in src/main/serialize.c:2494 >> > >> > InitMemOutPStrea...
2004 Apr 27
1
Rsync 2.6.1 released (includes security note)
Rsync version 2.6.1 has been released. It is primarily a performance release that requires less memory to run, makes fewer write calls to the socket (lowering the system CPU time), does less string copying (lowering the user CPU time), and also reduces the amount of data that is transmitted over the wire. There have also been quite a few bug fixes. See the release NEWS for the full details:
2004 Apr 27
1
Rsync 2.6.1 released (includes security note)
Rsync version 2.6.1 has been released. It is primarily a performance release that requires less memory to run, makes fewer write calls to the socket (lowering the system CPU time), does less string copying (lowering the user CPU time), and also reduces the amount of data that is transmitted over the wire. There have also been quite a few bug fixes. See the release NEWS for the full details:
2012 Mar 01
3
murdering high-memory workers and auto-scaling
Two ideas, one more controversial than the other. First: auto-killing bloated workers.?My current app has some memory leakage that wasn''t really visible on our older passenger setup, since the auto-scaling meant that bloated workers got killed periodically. In a perfect world, we''d find and patch all of the leaks, but in the meantime (and as a safety net) I''d like to get
2011 Jul 27
4
Creating a vm with a non-existent /dev/mapper/ tap2 device effectively hangs dom0 system
...atus & [3] 12236 ukxen2 11327 # Name: tapdisk2 State: D (disk sleep) Tgid: 11327 Pid: 11327 PPid: 1 TracerPid: 0 Uid: 0 0 0 0 Gid: 0 0 0 0 FDSize: 64 Groups: VmPeak: 23056 kB VmSize: 21644 kB VmLck: 21640 kB VmHWM: 3848 kB VmRSS: 3232 kB VmData: 364 kB VmStk: 88 kB VmExe: 224 kB VmLib: 2460 kB VmPTE: 64 kB Threads: 1 SigQ: 2/6081 SigPnd: 0000000000000000 ShdPnd: 0000000000000000 SigBlk: 0000000000000000 SigIgn: 0000000000001000 SigCgt: 0000000181000242 CapInh: 0000000000000000 Ca...
2003 Dec 01
0
No subject
...be> List-Archive: http://lists.samba.org/pipermail/samba/ Hello, SuSE Linux 6.4 Kernel 2.2.14 Samba 2.0.7-13 (replaced Samba 2.0.6) After changing or even touching smb.conf while Samba is running all following smbd processes need much more memory. Before change (example): VmSize: 6612 kB, VmRSS: 4652 kB After change (example): VmSize: 8844 kB, VmRSS: 6760 kB How can this be fixed? Will Samba 2.0.10-0 fix the problem? Regards, Guenter Wagner g.wagner@mkg-bank.de Return-Path: <greinick@filmakademie.de> Delivered-To: samba@samba.org Received: from mail.filmakademie.de (mail.film...