Re: disable mysterious GC

2011-10-03 Thread Yang
btw the first code snippet is from openjdk 7 On Mon, Oct 3, 2011 at 2:29 PM, Yang wrote: > looks doc is outdated : > > $ grep '\.gcInterval' > ./j2se/src/share/classes/sun/rmi/transport/ObjectTable.java >            new GetLongAction("sun.rmi.dgc.server.gcInterval", 360)); > > > On Mon, Oct

Re: disable mysterious GC

2011-10-03 Thread Yang
looks doc is outdated : $ grep '\.gcInterval' ./j2se/src/share/classes/sun/rmi/transport/ObjectTable.java new GetLongAction("sun.rmi.dgc.server.gcInterval", 360)); On Mon, Oct 3, 2011 at 2:21 PM, Jonathan Ellis wrote: > I would expect that client=nodetool and server=Cassandra.  

Re: disable mysterious GC

2011-10-03 Thread Jonathan Ellis
I would expect that client=nodetool and server=Cassandra. But sun's docs say that sun.rmi.dgc.server.gcInterval defaults to 60s which I am definitely NOT seeing. On Mon, Oct 3, 2011 at 4:12 PM, Yang wrote: > the following source code in jdk , RMI part, forces a full gc every 1 > hour , if no old

disable mysterious GC

2011-10-03 Thread Yang
the following source code in jdk , RMI part, forces a full gc every 1 hour , if no old gen gc has happened by then. /** maximum interval between complete garbage collections of local heap */ private static final long gcInterval = // default 1 hour AccessController.d