Re: Decommissioning node is causing broken pipe error

2011-05-05 Thread Peter Schuller
It's no longer recommended to run nodetool compact regularly as it can mean that some tombstones do not get to be purged for a very long time. I think this is a mis-typing; it used to be that major compactions were necessary to remove tombstones, but this is no longer the case in 0.7 so that

Re: Native heap leaks?

2011-05-05 Thread Oleg Anastasyev
Probably this is because of mmapped io access mode, which is enabled by default in 64-bit VMs - RAM is occupied by data files. If you have such a tight memory reqs, you can turn on standard access mode in storage-conf.xml, but dont expect it to work fast then: !--

Re: Decommissioning node is causing broken pipe error

2011-05-05 Thread Tyler Hobbs
On Thu, May 5, 2011 at 1:21 AM, Peter Schuller peter.schul...@infidyne.comwrote: It's no longer recommended to run nodetool compact regularly as it can mean that some tombstones do not get to be purged for a very long time. I think this is a mis-typing; it used to be that major compactions

New node not joining

2011-05-05 Thread Sanjeev Kulkarni
Hey guys, I'm running into what seems like a very basic problem. I have a one node cassandra instance. Version 0.7.5. Freshly installed. Contains no data. The cassandra.yaml is the same as the default one that is supplied, except for data/commitlog/saved_caches directories. I also changed the

Re: me.prettyprint.hector.api.exceptions.HInvalidRequestException: InvalidRequestException(why:Cluster schema does not yet agree)

2011-05-05 Thread Dikang Gu
Is this fixed in cassandra-0.7.5 or cassandra-0.8 ? On Thu, May 5, 2011 at 1:43 PM, Tyler Hobbs ty...@datastax.com wrote: The issue is quite possibly this: https://issues.apache.org/jira/browse/CASSANDRA-2536 A person on the ticket commented that decomissioning and rejoining the node with

Cassandra CMS

2011-05-05 Thread David Boxenhorn
Does anyone know of a content management system that can be easily customized to use Cassandra as its database? (Even better, if it can use Cassandra without customization!)

CQL v1.0.0: why super column family not descirbed in it?

2011-05-05 Thread Guofeng Zhang
Hi, I read the CQL v1.0 document. There are operations about column families, but it does not describe how to operate on super column families. Why? Does this mean that super column families would not be supported by CQL in this version? Will it be supported in the future? Thanks. Guofeng

Re: Write performance help needed

2011-05-05 Thread aaron morton
I was inserting the contents of wikipedia, so the columns were at multi kilobyte strings. It's a good data source to run tests with as the records and relationships are somewhat varied in size. My main point was to say the best way to benchmark cassandra with with multiple server nodes,

Re: Native heap leaks?

2011-05-05 Thread Hannes Schmidt
This was my first thought, too. We switched to mmap_index_only and didn't see any change in behavior. Looking at the smaps file attached to my original post, one can see that the mmapped index files take up only a minuscule part of RSS. On Wed, May 4, 2011 at 11:37 PM, Oleg Anastasyev

Re: Unicode key encoding problem when upgrading from 0.6.13 to 0.7.5

2011-05-05 Thread aaron morton
Interesting but as we are dealing with keys it should not matter as they are treated as byte buffers. - Aaron Morton Freelance Cassandra Developer @aaronmorton http://www.thelastpickle.com On 5 May 2011, at 04:53, Daniel Doubleday wrote: This is a bit of a wild guess but

Re: Unicode key encoding problem when upgrading from 0.6.13 to 0.7.5

2011-05-05 Thread aaron morton
I take it back, the problem started in 0.6 where keys were strings. Looking into how 0.6 did it's thing - Aaron Morton Freelance Cassandra Developer @aaronmorton http://www.thelastpickle.com On 5 May 2011, at 22:36, aaron morton wrote: Interesting but as we are dealing with

Re: Cassandra CMS

2011-05-05 Thread Eric tamme
Does anyone know of a content management system that can be easily customized to use Cassandra as its database? (Even better, if it can use Cassandra without customization!) I think your best bet will be to look for a CMS that uses an ORM for the storage layer and write a specific ORM for

Re: Decommissioning node is causing broken pipe error

2011-05-05 Thread aaron morton
Yes that was what I was trying to say. thanks - Aaron Morton Freelance Cassandra Developer @aaronmorton http://www.thelastpickle.com On 5 May 2011, at 18:52, Tyler Hobbs wrote: On Thu, May 5, 2011 at 1:21 AM, Peter Schuller peter.schul...@infidyne.com wrote: It's no longer

Re: Cassandra CMS

2011-05-05 Thread aaron morton
Would you think of Django as a CMS ? http://stackoverflow.com/questions/2369793/how-to-use-cassandra-in-django-framework Cheers - Aaron Morton Freelance Cassandra Developer @aaronmorton http://www.thelastpickle.com On 5 May 2011, at 22:54, Eric tamme wrote: Does anyone know of

Re: Unicode key encoding problem when upgrading from 0.6.13 to 0.7.5

2011-05-05 Thread Henrik Schröder
Yes, the keys were written to 0.6, but when I looked through the thrift client code for 0.6, it explicitly converts all string keys to UTF8 before sending them over to the server so the encoding *should* be right, and after the upgrade to 0.7.5, sstablekeys prints out the correct byte values for

Re: Unicode key encoding problem when upgrading from 0.6.13 to 0.7.5

2011-05-05 Thread Henrik Schröder
Yeah, I've seen that one, and I'm guessing that it's the root cause of my problems, something something encoding error, but that doesn't really help me. :-) However, I've done all my tests with 0.7.5, I'm gonna try them again with 0.7.4, just to see how that version reacts. /Henrik On Wed, May

Re: Cassandra CMS

2011-05-05 Thread David Boxenhorn
I'm looking at Magnolia at the moment (as in, this second). At first glance, it looks like I should be able to use Cassandra as the database: http://documentation.magnolia-cms.com/technical-guide/content-storage-and-structure.html#Persistent_storage If it can use a filesystem as its database, it

Re: Unicode key encoding problem when upgrading from 0.6.13 to 0.7.5

2011-05-05 Thread aaron morton
The hard core way to fix the data is export to json with sstable2json, hand edit, and then json2sstable it back. Also to confirm, this only happens when data is written in 0.6 and then tried to read back in 0.7? And you what partitioner are you using ? You can still see the keys ? Can you

Re: Native heap leaks?

2011-05-05 Thread Chris Burroughs
On 2011-05-05 06:30, Hannes Schmidt wrote: This was my first thought, too. We switched to mmap_index_only and didn't see any change in behavior. Looking at the smaps file attached to my original post, one can see that the mmapped index files take up only a minuscule part of RSS. I have not

Re: Unicode key encoding problem when upgrading from 0.6.13 to 0.7.5

2011-05-05 Thread Daniel Doubleday
Thats UTF-8 not UTF-16. On May 5, 2011, at 1:57 PM, aaron morton wrote: The hard core way to fix the data is export to json with sstable2json, hand edit, and then json2sstable it back. Also to confirm, this only happens when data is written in 0.6 and then tried to read back in 0.7?

Re: Unicode key encoding problem when upgrading from 0.6.13 to 0.7.5

2011-05-05 Thread Daniel Doubleday
Don't know if that helps you but since we had the same SSTable corruption I have been looking into that very code the other day: If you could afford to drop these rows and are able to recognize them the easiest way would be patching: SSTableScanner:162 public IColumnIterator next() {

RE: New node not joining

2011-05-05 Thread Len Bucchino
I have the same problem on 0.7.5 auto bootstrapping a 3rd node onto an empty 2 node test cluster (the two nodes were manually added) and the it currently has an empty schema. My log entries look similar to yours. I took the new token it says its going to use from the log file added it to the

Re: CQL v1.0.0: why super column family not descirbed in it?

2011-05-05 Thread Eric Evans
On Thu, 2011-05-05 at 18:19 +0800, Guofeng Zhang wrote: I read the CQL v1.0 document. There are operations about column families, but it does not describe how to operate on super column families. Why? Does this mean that super column families would not be supported by CQL in this version? Will

Re: suggestion: sstable2json to ignore TTL

2011-05-05 Thread Timo Nentwig
On Apr 27, 2011, at 16:59, Timo Nentwig wrote: On Apr 27, 2011, at 16:52, Edward Capriolo wrote: The method being private is not a deal-breaker.While not good software engineering practice you can copy and paste the code and renamed the class SSTable2MyJson or whatever. Sure I can do

Re: Native heap leaks?

2011-05-05 Thread Thibaut Britz
Reading this, I tried it again (this time on a freshly formated node due to hd failure). Before crashing, my data dir was only 7.7M big. Using nmap_indexonly (mlockall was successfull) on a 64bit machine. Anything else I could try to get this to work? Ps. All the other nodes (and this node) run

Compound columns spec

2011-05-05 Thread David Boxenhorn
Is there a spec for compound columns? I want to know the exact format of compound columns so I can adhere to it. For example, what is the separator - or is some other format used (e.g. length:value or type:length:value)?

Re: CQL v1.0.0: why super column family not descirbed in it?

2011-05-05 Thread Victor Kabdebon
Hello Eric, Compound columns seem to be a very interesting feature. Do you have any idea in which Cassandra version it is going to be introduced : 0.8.X or 0.9.X ? Thanks, Victor 2011/5/5 Eric Evans eev...@rackspace.com On Thu, 2011-05-05 at 18:19 +0800, Guofeng Zhang wrote: I read the CQL

Re: Compound columns spec

2011-05-05 Thread Sylvain Lebresne
I suppose it depends what you are referring to by compound columns. If you're talking about the CompositeType of CASSANDRA-2231 (which is my only guess), then the format is in the javadoc and is: /* * The encoding of a CompositeType column name should be: * componentcomponentcomponent ... *

Re: Compound columns spec

2011-05-05 Thread David Boxenhorn
Thanks, yes, I was referring to the compound columns in this quote (from a previous thread): No CQL will never support super columns, but later versions (not 1.0.0) will support compound columns. Compound columns are better; instead of a two-deep structure, you can have one of arbitrary depth.

Re: CQL v1.0.0: why super column family not descirbed in it?

2011-05-05 Thread Eric Evans
On Thu, 2011-05-05 at 10:49 -0400, Victor Kabdebon wrote: Hello Eric, Compound columns seem to be a very interesting feature. Do you have any idea in which Cassandra version it is going to be introduced : 0.8.X or 0.9.X ? You can use these today with a custom comparator[1]. There is an open

Re: Compound columns spec

2011-05-05 Thread Eric Evans
On Thu, 2011-05-05 at 17:44 +0300, David Boxenhorn wrote: Is there a spec for compound columns? I want to know the exact format of compound columns so I can adhere to it. For example, what is the separator - or is some other format used (e.g. length:value or type:length:value)?

Re: CQL v1.0.0: why super column family not descirbed in it?

2011-05-05 Thread Victor Kabdebon
Thank you, I will look into that and I will probably wait until there is an out of the box comparator. But it's an excellent new feature ! Regards, Victor K. 2011/5/5 Eric Evans eev...@rackspace.com On Thu, 2011-05-05 at 10:49 -0400, Victor Kabdebon wrote: Hello Eric, Compound columns

Re: Compound columns spec

2011-05-05 Thread David Boxenhorn
What is the format of length of value ? On Thu, May 5, 2011 at 6:14 PM, Eric Evans eev...@rackspace.com wrote: On Thu, 2011-05-05 at 17:44 +0300, David Boxenhorn wrote: Is there a spec for compound columns? I want to know the exact format of compound columns so I can adhere to it. For

Re: Compound columns spec

2011-05-05 Thread Sylvain Lebresne
I think for CQL there is two different things: 1) how the request will look like. I think that it is what Eric is refering to when he says colon delimited. So a query will look like SELECT foo:42:bar 2) and there is the actual byte format in which the column name will

Re: Compound columns spec

2011-05-05 Thread Sylvain Lebresne
On Thu, May 5, 2011 at 5:21 PM, David Boxenhorn da...@taotown.com wrote: What is the format of length of value ? With the warning of my previous mail, it's an unsigned short (2 bytes). On Thu, May 5, 2011 at 6:14 PM, Eric Evans eev...@rackspace.com wrote: On Thu, 2011-05-05 at 17:44 +0300,

GC for ParNew (cassandra under performance ) 0.6.3

2011-05-05 Thread Ali Ahsan
Hi All I have two cassandra node with RF=2,Cassandra start under performing i mean red write are slow and i see following info in cassandra log.I have centos 5.5 64 bit with 14 GB memory assigned to cassandra.I am using LVM for cassandra.When i reboot my cassanrda every thing become normal.

Re: GC for ParNew (cassandra under performance ) 0.6.3

2011-05-05 Thread Jonathan Ellis
6s parnew is insane. you're probably swapping. Easiest fix is disabling swap entirely. P.S. 0.6.3 is ancient. On Thu, May 5, 2011 at 10:51 AM, Ali Ahsan ali.ah...@panasiangroup.com wrote: Hi All I have two cassandra node with RF=2,Cassandra start under performing  i mean red write are slow

Re: GC for ParNew (cassandra under performance ) 0.6.3

2011-05-05 Thread Ali Ahsan
Thanks replying,let me disable my swap memory. On 05/05/2011 09:01 PM, Jonathan Ellis wrote: 6s parnew is insane. you're probably swapping. Easiest fix is disabling swap entirely. P.S. 0.6.3 is ancient. -- S.Ali Ahsan Senior System Engineer e-Business (Pvt) Ltd 49-C Jail Road,

Re: me.prettyprint.hector.api.exceptions.HInvalidRequestException: InvalidRequestException(why:Cluster schema does not yet agree)

2011-05-05 Thread Tyler Hobbs
It's fixed in the cassandra-0.7 branch (no 0.7.x release, yet) and 0.8-beta2. You can also use ntp to sync the clocks in your cluster and the problem won't happen again. On Thu, May 5, 2011 at 3:47 AM, Dikang Gu dikan...@gmail.com wrote: Is this fixed in cassandra-0.7.5 or cassandra-0.8 ? On

Re: Unicode key encoding problem when upgrading from 0.6.13 to 0.7.5

2011-05-05 Thread Henrik Schröder
I can't run sstable2json on the datafiles from 0.7, it throws the same Keys must be written in ascending order. error as compaction. I can run sstable2json on the 0.6 datafiles, but when I tested that the unicode characters in the keys got completely mangled since it outputs keys in string format,

Re: Unicode key encoding problem when upgrading from 0.6.13 to 0.7.5

2011-05-05 Thread Henrik Schröder
Thanks, but patching or losing keys is not an option for us. :-/ /Henrik On Thu, May 5, 2011 at 15:00, Daniel Doubleday daniel.double...@gmx.netwrote: Don't know if that helps you but since we had the same SSTable corruption I have been looking into that very code the other day: If you

java.lang.NoSuchMethodError

2011-05-05 Thread Jordan Zimmerman
I can't seem to get the correct version of avro. Any help with this error would be appreciated: java.lang.NoSuchMethodError: org.apache.avro.generic.GenericData$Array.init(ILorg/apache/avro/Schema;)V at org.apache.cassandra.io.SerDeUtils.createArray(SerDeUtils.java:129) at

Migrating all rows from 0.6.13 to 0.7.5 over thrift?

2011-05-05 Thread Henrik Schröder
We can't do a straight upgrade from 0.6.13 to 0.7.5 because we have rows stored that have unicode keys, and Cassandra 0.7.5 thinks those rows in the sstables are corrupt, and it seems impossible to clean it up without losing data. However, we can still read all rows perfectly via thrift so we are

RE: New node not joining

2011-05-05 Thread Len Bucchino
Adding the fourth node to the cluster with an empty schema using auto_bootstrap was not successful. A nodetool netstats on the new node shows Mode: Joining: getting bootstrap token similar to what the third node did before it was manually added. Also, there are no exceptions in the logs but

RE: New node not joining

2011-05-05 Thread Len Bucchino
Also, setting auto_bootstrap to false and setting token to the one that it said it would use in the logs allows the new node to join the ring. From: Len Bucchino [mailto:len.bucch...@veritix.com] Sent: Thursday, May 05, 2011 1:25 PM To: user@cassandra.apache.org Subject: RE: New node not joining

estimateRowsFromIndex exception in 0.7.5

2011-05-05 Thread Wenjun Che
Hello, I have a one node cluster (refresh install from 0.7.4 and upgraded to 0.7.5 last week). The data is being backed up by a cron job that periodically tar/gzip entire var/lib directory. when I tested the backup by restoring the last tar file, I am seeing the following exception: DEBUG

Re: estimateRowsFromIndex exception in 0.7.5

2011-05-05 Thread Sylvain Lebresne
On Thu, May 5, 2011 at 8:38 PM, Wenjun Che wen...@openf.in wrote: Hello, I have a one node cluster (refresh install from 0.7.4 and upgraded to 0.7.5 last week).  The data is being backed up by  a cron job that periodically tar/gzip entire var/lib directory.  when I tested the backup by

caching change between 0.7.0 and 0.7.5

2011-05-05 Thread Paul Loy
Hi all, so I just updated Cassandra from 0.7.0 to 0.7.5. I embed Cassandra in my app and use StorageProxy for querying. In one of my unit tests I write a column to Cassandra and then read it out again twice in quick succession. The second time I now get the same ByteBuffer (i.e. same id - same

java.lang.RuntimeException: Cannot recover SSTable with version a (current version f).

2011-05-05 Thread Jeremiah Jordan
Running repair and I am getting this error: java.lang.RuntimeException: Cannot recover SSTable with version a (current version f). at org.apache.cassandra.io.sstable.SSTableWriter.createBuilder(SSTableWrite r.java:237) at

Re: estimateRowsFromIndex exception in 0.7.5

2011-05-05 Thread Wenjun Che
Sylvain, thanks for the quick response, and you are correct: there is an empty index file. I removed the file and tried to start it up. Now Cassandra is reporting corrupt sstables. Does this mean I can't just simply back up var/lib directory (use snapshots instead) ? We don't have much data

RE: New node not joining

2011-05-05 Thread Len Bucchino
I just rebuilt the cluster in the same manner as I did originally except after I setup the first node I added a keyspace and column family before adding any new nodes. This time the 3rd node auto bootstrapped successfully. From: Len Bucchino [mailto:len.bucch...@veritix.com] Sent: Thursday,

Re: New node not joining

2011-05-05 Thread Sanjeev Kulkarni
Here is what I did. I booted up the first one. After that I started the second one with bootstrap turned off. Then I did a nodetool loadbalance on the second node. After which I added the third node again with bootstrap turned off. Then did the loadbalance again on the third node. This seems to

Re: Decommissioning node is causing broken pipe error

2011-05-05 Thread Sameer Farooqui
Just wanted to update you guys that we turned on DEBUG level logging on the decommissioned node and the node receiving the decommissioned node's range. We did this by editing cassandra-home/conf/log4j-server.properties and changing the log4j.rootLogger to DEBUG. We ran decommission again and saw

Does anybody have experience with running Cassandra in Amazon's Virtual Private Cloud (VPC)?

2011-05-05 Thread Sameer Farooqui
Here is an image that shows what the Amazon VPC we're thinking about using looks like: http://i.imgur.com/OUe1i.png We would like to configure a 2 node Cassandra cluster in the private subnet and a read/write web application service in the public subnet. However, we also want to span the

Re: suggestion: sstable2json to ignore TTL

2011-05-05 Thread aaron morton
Click on Submit Patch then it should get noticed as the committers go through the patch list. And / Or update the comments to get it back into the activity stream If you need a hand with updating the 0.8 patch let me know. Cheers - Aaron Morton Freelance Cassandra Developer

Re: java.lang.RuntimeException: Cannot recover SSTable with version a (current version f).

2011-05-05 Thread Benjamin Coverston
Hi Jeremiah, Did you try following up by running scrub? Did it help? Ben On 5/5/11 1:42 PM, Jeremiah Jordan wrote: Running repair and I am getting this error: java.lang.RuntimeException: Cannot recover SSTable with version a (current version f). at

Re: java.lang.RuntimeException: Cannot recover SSTable with version a (current version f).

2011-05-05 Thread Benjamin Coverston
Also, a nodetool cleanup would rebuild the SSTable to the most current version. On 5/5/11 1:42 PM, Jeremiah Jordan wrote: Running repair and I am getting this error: java.lang.RuntimeException: Cannot recover SSTable with version a (current version f). at

Re: Native heap leaks?

2011-05-05 Thread aaron morton
Hannes, To get a baseline of behaviour set disk_access to standard. You will probably want to keep it like that if you want better control over the memory on the box. Also connect to the box with JConsole and look at the PermGen space used it is not included in the max heap

Re: java.lang.NoSuchMethodError

2011-05-05 Thread aaron morton
Release Candidates are not really supported the 0.7 ones contain bugs, you should definitely not be using it. What is the the context for this error ? in an IDE in ant ? is the avro jar in the path ? Can you use 0.7.5 ? Cheers - Aaron Morton Freelance Cassandra Developer

Re: caching change between 0.7.0 and 0.7.5

2011-05-05 Thread aaron morton
Row cache is still disabled by default. AFAIK in general you should not move the position on any buffer in cassandra or take ownership of them. - Aaron Morton Freelance Cassandra Developer @aaronmorton http://www.thelastpickle.com On 6 May 2011, at 07:34, Paul Loy wrote:

Re: estimateRowsFromIndex exception in 0.7.5

2011-05-05 Thread aaron morton
Use snapshots or borrow from simplegeo.com https://github.com/simplegeo/tablesnap If you grab the directory at an arbitrary time there is no guarantee the data will be consistent. Cheers - Aaron Morton Freelance Cassandra Developer @aaronmorton http://www.thelastpickle.com On

Re: New node not joining

2011-05-05 Thread aaron morton
When adding nodes it is a *very* good idea to manually set the tokens, see http://wiki.apache.org/cassandra/Operations#Load_balancing bootstrap is a process that happens only once on a node, where as well as telling the other nodes it's around it asks them to stream over the data it will no be

Re: Decommissioning node is causing broken pipe error

2011-05-05 Thread aaron morton
Could you provide some of the log messages when the receiver ran out of disk space ? Sounds like it should be at ERROR level. Thanks - Aaron Morton Freelance Cassandra Developer @aaronmorton http://www.thelastpickle.com On 6 May 2011, at 09:16, Sameer Farooqui wrote: Just

Re: Does anybody have experience with running Cassandra in Amazon's Virtual Private Cloud (VPC)?

2011-05-05 Thread aaron morton
There have been some recent discussions about different EC2 deployments, may be be exactly what you are looking for but try start here http://cassandra-user-incubator-apache-org.3065146.n2.nabble.com/Re-IP-address-resolution-in-MultiDC-setup-EC2-VIP-td6306635.html - Aaron

Re: Migrating all rows from 0.6.13 to 0.7.5 over thrift?

2011-05-05 Thread aaron morton
The difficulty is the different thrift clients between 0.6 and 0.7. If you want to roll your own solution I would consider: - write an app to talk to 0.6 and pull out the data using keys from the other system (so you know can check referential integrity while you are at it). Dump the data to

Re: Native heap leaks?

2011-05-05 Thread Benjamin Coverston
How many column families do you have? On 5/4/11 12:50 PM, Hannes Schmidt wrote: Hi, We are using Cassandra 0.6.12 in a cluster of 9 nodes. Each node is 64-bit, has 4 cores and 4G of RAM and runs on Ubuntu Lucid with the stock 2.6.32-31-generic kernel. We use the Sun/Oracle JDK. Here's the

Running Cassandra across different Amazon EC2 regions

2011-05-05 Thread Sameer Farooqui
We're trying to set up a Cassandra 0.8.0beta1 cluster across Amazon East West regions. It does not work out of the box with the binaries and the nodes in different regions end up setting this own clusters. The problem is with Cassandra's Listening Address as described by Rui: Using external IP

RE: Decommissioning node is causing broken pipe error

2011-05-05 Thread tamara.alexander
Unfortunately no messages at ERROR level: INFO [Thread-460] 2011-05-04 21:31:14,427 StreamInSession.java (line 121) Streaming of file /raiddrive/MDR/MeterRecords-f-2264-Data.db/(98339515276,197218618166) progress=41536315392/98879102890 - 42% from

[RELEASE] Apache Cassandra 0.8.0 beta2

2011-05-05 Thread Eric Evans
I am pleased to announce the release of Apache Cassandra 0.8.0 beta2. We're zeroing in fast on the final release (expect an RC within the week), so this should be the last beta; Time is running out, so please help test! As always, be sure to have a look at the changelog[1] and release notes[2].

Re: [RELEASE] Apache Cassandra 0.8.0 beta2

2011-05-05 Thread Nate McCall
RPMs can be found here: http://rpm.datastax.com/EL/5/x86_64/ If you have the DataStax/Riptano repository installed already, the package is currently named apache-cassandra08 (to avoid any nasty surprises for anyone on 0.7.x doing a 'yum upgrade'). On Thu, May 5, 2011 at 8:37 PM, Eric Evans

CFHistograms?

2011-05-05 Thread Xaero S
Can someone point me to a document that explains how to interpret CFHistograms output? i went through http://narendrasharma.blogspot.com/2011/04/cassandra-07x-understanding-output-of.htmlwhich is a good beginning, but was wondering if there was anything more detailed. For e.g when i run

Re: Running Cassandra across different Amazon EC2 regions

2011-05-05 Thread Sasha Dolgy
http://cassandra-user-incubator-apache-org.3065146.n2.nabble.com/Re-IP-address-resolution-in-MultiDC-setup-EC2-VIP-td6306635.html On May 6, 2011 3:07 AM, Sameer Farooqui cassandral...@gmail.com wrote: We're trying to set up a Cassandra 0.8.0beta1 cluster across Amazon East West regions. It does