Re: Resident size growth

2012-04-18 Thread Rob Coli
On Tue, Apr 10, 2012 at 8:40 AM, ruslan usifov ruslan.usi...@gmail.com wrote:
 mmap doesn't depend on jna

FWIW, this confusion is as a result of the use of *mlockall*, which is
used to prevent mmapped files from being swapped, which does depend on
JNA.

=Rob

-- 
=Robert Coli
AIMGTALK - rc...@palominodb.com
YAHOO - rcoli.palominob
SKYPE - rcoli_palominodb


Re: Resident size growth

2012-04-18 Thread Jonathan Ellis
On Wed, Apr 18, 2012 at 12:44 PM, Rob Coli rc...@palominodb.com wrote:
 On Tue, Apr 10, 2012 at 8:40 AM, ruslan usifov ruslan.usi...@gmail.com 
 wrote:
 mmap doesn't depend on jna

 FWIW, this confusion is as a result of the use of *mlockall*, which is
 used to prevent mmapped files from being swapped, which does depend on
 JNA.

mlockall does depend on JNA, but we only lock the JVM itself in
memory.  The OS is free to page data files in and out as needed.

-- 
Jonathan Ellis
Project Chair, Apache Cassandra
co-founder of DataStax, the source for professional Cassandra support
http://www.datastax.com


Re: Resident size growth

2012-04-10 Thread ruslan usifov
mmap doesn't depend on jna

2012/4/9 Jeremiah Jordan jeremiah.jor...@morningstar.com

  He says he disabled JNA.  You can't mmap without JNA can you?

  On Apr 9, 2012, at 4:52 AM, aaron morton wrote:

  see http://wiki.apache.org/cassandra/FAQ#mmap

  Cheers

 -
 Aaron Morton
 Freelance Developer
 @aaronmorton
 http://www.thelastpickle.com

  On 9/04/2012, at 5:09 AM, ruslan usifov wrote:

 mmap sstables? It's normal

 2012/4/5 Omid Aladini omidalad...@gmail.com

 Hi,

 I'm experiencing a steady growth in resident size of JVM running
 Cassandra 1.0.7. I disabled JNA and off-heap row cache, tested with
 and without mlockall disabling paging, and upgraded to JRE 1.6.0_31 to
 prevent this bug [1] to leak memory. Still JVM's resident set size
 grows steadily. A process with Xmx=2048M has grown to 6GB resident
 size and one with Xmx=8192M to 16GB in a few hours and increasing. Has
 anyone experienced this? Any idea how to deal with this issue?

 Thanks,
 Omid

 [1] http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7066129







Re: Resident size growth

2012-04-10 Thread ruslan usifov
also i suggest to setup disk_access_mode: mmap_index_only

2012/4/9 Omid Aladini omidalad...@gmail.com

 Thanks. Yes it's due to mmappd SSTables pages that count as resident size.

 Jeremiah: mmap isn't through JNA, it's via java.nio.MappedByteBuffer I
 think.

 -- Omid

 On Mon, Apr 9, 2012 at 4:15 PM, Jeremiah Jordan
 jeremiah.jor...@morningstar.com wrote:
  He says he disabled JNA.  You can't mmap without JNA can you?
 
  On Apr 9, 2012, at 4:52 AM, aaron morton wrote:
 
  see http://wiki.apache.org/cassandra/FAQ#mmap
 
  Cheers
 
  -
  Aaron Morton
  Freelance Developer
  @aaronmorton
  http://www.thelastpickle.com
 
  On 9/04/2012, at 5:09 AM, ruslan usifov wrote:
 
  mmap sstables? It's normal
 
  2012/4/5 Omid Aladini omidalad...@gmail.com
 
  Hi,
 
  I'm experiencing a steady growth in resident size of JVM running
  Cassandra 1.0.7. I disabled JNA and off-heap row cache, tested with
  and without mlockall disabling paging, and upgraded to JRE 1.6.0_31 to
  prevent this bug [1] to leak memory. Still JVM's resident set size
  grows steadily. A process with Xmx=2048M has grown to 6GB resident
  size and one with Xmx=8192M to 16GB in a few hours and increasing. Has
  anyone experienced this? Any idea how to deal with this issue?
 
  Thanks,
  Omid
 
  [1] http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7066129
 
 
 
 



Re: Resident size growth

2012-04-09 Thread aaron morton
see http://wiki.apache.org/cassandra/FAQ#mmap

Cheers

-
Aaron Morton
Freelance Developer
@aaronmorton
http://www.thelastpickle.com

On 9/04/2012, at 5:09 AM, ruslan usifov wrote:

 mmap sstables? It's normal
 
 2012/4/5 Omid Aladini omidalad...@gmail.com
 Hi,
 
 I'm experiencing a steady growth in resident size of JVM running
 Cassandra 1.0.7. I disabled JNA and off-heap row cache, tested with
 and without mlockall disabling paging, and upgraded to JRE 1.6.0_31 to
 prevent this bug [1] to leak memory. Still JVM's resident set size
 grows steadily. A process with Xmx=2048M has grown to 6GB resident
 size and one with Xmx=8192M to 16GB in a few hours and increasing. Has
 anyone experienced this? Any idea how to deal with this issue?
 
 Thanks,
 Omid
 
 [1] http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7066129
 



Re: Resident size growth

2012-04-09 Thread Jeremiah Jordan
He says he disabled JNA.  You can't mmap without JNA can you?

On Apr 9, 2012, at 4:52 AM, aaron morton wrote:

see http://wiki.apache.org/cassandra/FAQ#mmap

Cheers

-
Aaron Morton
Freelance Developer
@aaronmorton
http://www.thelastpickle.comhttp://www.thelastpickle.com/

On 9/04/2012, at 5:09 AM, ruslan usifov wrote:

mmap sstables? It's normal

2012/4/5 Omid Aladini omidalad...@gmail.commailto:omidalad...@gmail.com
Hi,

I'm experiencing a steady growth in resident size of JVM running
Cassandra 1.0.7. I disabled JNA and off-heap row cache, tested with
and without mlockall disabling paging, and upgraded to JRE 1.6.0_31 to
prevent this bug [1] to leak memory. Still JVM's resident set size
grows steadily. A process with Xmx=2048M has grown to 6GB resident
size and one with Xmx=8192M to 16GB in a few hours and increasing. Has
anyone experienced this? Any idea how to deal with this issue?

Thanks,
Omid

[1] http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7066129





Re: Resident size growth

2012-04-09 Thread Omid Aladini
Thanks. Yes it's due to mmappd SSTables pages that count as resident size.

Jeremiah: mmap isn't through JNA, it's via java.nio.MappedByteBuffer I think.

-- Omid

On Mon, Apr 9, 2012 at 4:15 PM, Jeremiah Jordan
jeremiah.jor...@morningstar.com wrote:
 He says he disabled JNA.  You can't mmap without JNA can you?

 On Apr 9, 2012, at 4:52 AM, aaron morton wrote:

 see http://wiki.apache.org/cassandra/FAQ#mmap

 Cheers

 -
 Aaron Morton
 Freelance Developer
 @aaronmorton
 http://www.thelastpickle.com

 On 9/04/2012, at 5:09 AM, ruslan usifov wrote:

 mmap sstables? It's normal

 2012/4/5 Omid Aladini omidalad...@gmail.com

 Hi,

 I'm experiencing a steady growth in resident size of JVM running
 Cassandra 1.0.7. I disabled JNA and off-heap row cache, tested with
 and without mlockall disabling paging, and upgraded to JRE 1.6.0_31 to
 prevent this bug [1] to leak memory. Still JVM's resident set size
 grows steadily. A process with Xmx=2048M has grown to 6GB resident
 size and one with Xmx=8192M to 16GB in a few hours and increasing. Has
 anyone experienced this? Any idea how to deal with this issue?

 Thanks,
 Omid

 [1] http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7066129






Re: Resident size growth

2012-04-08 Thread ruslan usifov
mmap sstables? It's normal

2012/4/5 Omid Aladini omidalad...@gmail.com

 Hi,

 I'm experiencing a steady growth in resident size of JVM running
 Cassandra 1.0.7. I disabled JNA and off-heap row cache, tested with
 and without mlockall disabling paging, and upgraded to JRE 1.6.0_31 to
 prevent this bug [1] to leak memory. Still JVM's resident set size
 grows steadily. A process with Xmx=2048M has grown to 6GB resident
 size and one with Xmx=8192M to 16GB in a few hours and increasing. Has
 anyone experienced this? Any idea how to deal with this issue?

 Thanks,
 Omid

 [1] http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7066129



Resident size growth

2012-04-05 Thread Omid Aladini
Hi,

I'm experiencing a steady growth in resident size of JVM running
Cassandra 1.0.7. I disabled JNA and off-heap row cache, tested with
and without mlockall disabling paging, and upgraded to JRE 1.6.0_31 to
prevent this bug [1] to leak memory. Still JVM's resident set size
grows steadily. A process with Xmx=2048M has grown to 6GB resident
size and one with Xmx=8192M to 16GB in a few hours and increasing. Has
anyone experienced this? Any idea how to deal with this issue?

Thanks,
Omid

[1] http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7066129