Re: Calculate memory used for keycache

2011-03-15 Thread Jean-Yves LEBLEU
One additionnal question, I don't really understand what is in the key cache. I have a column family with only one key, and the keycache size is 118 ... ? Any idea. Thks. Jean-Yves

Re: Calculate memory used for keycache

2011-03-15 Thread Peter Schuller
One additionnal question, I don't really understand what is in the key cache. I have a column family with only one key, and the keycache size is 118 ... ? The key cache is basically a hash table mapping row keys to sstable offsets. It avoids the need to read from the index portion of the

Calculate memory used for keycache

2011-03-14 Thread ruslan usifov
Hello How is it possible calculate this value? I think that key size, if we use RandomPartitioner will 16 bytes so keycache will took 16*(num of keycache elements) bytes ??

Re: Calculate memory used for keycache

2011-03-14 Thread Peter Schuller
How is it possible calculate this value? I think that key size, if we use RandomPartitioner will 16 bytes so keycache will took 16*(num of keycache elements) bytes ?? The easiest way right now is probably empirical testing. The issue is that the memory use must include overhead associated with

Re: Calculate memory used for keycache

2011-03-14 Thread Narendra Sharma
Sometime back I looked at the code to find that out. Following is the result. There will be some additional overhead for internal DS for ConcurrentLinkedHashMap. Keycache size * (8 bytes for position i.e. value + X bytes for key + 16 bytes for token (RP) + 8 byte reference for DecoratedKey + 8

Re: Calculate memory used for keycache

2011-03-14 Thread Robert Coli
On Mon, Mar 14, 2011 at 1:19 PM, Peter Schuller peter.schul...@infidyne.com wrote: How is it possible calculate this value? I think that key size, if we use RandomPartitioner will 16 bytes so keycache will took 16*(num of keycache elements) bytes ?? The easiest way right now is probably