Re: why I got error "Could not retrieve endpoint rangs" when I run sstableloader?

2015-12-28 Thread Yuki Morishita
You only need patch for sstableloader. You don't have to upgrade your cassandra servers at all. So, 1. fetch the latest cassandra-2.1 source $ git clone https://git-wip-us.apache.org/repos/asf/cassandra.git $ cd cassandra $ git checkout origin/cassandra-2.1 2. build it $ ant 3.

cassandra full gc too long

2015-12-28 Thread xutom
Hi all, I have 5 nodes in my C* cluster, and each node has the same configuration file(Cassandra-env.sh: MAX_HEAP_SIZE="32G" and HEAP_NEWSIZE="8G"), and My Cassandra version is 2.1.1. Now I want to export all data of one table, i am using select * from tablename, and set the

Re: Cassandra Java Driver

2015-12-28 Thread Alexandre Dutra
FYI, Java driver 3.0.0-rc1 has just been released . On Sat, Dec 26, 2015 at 11:15 AM Brice Dutheil wrote: > Not yet. The latestest DSE (4.8.3) is shipped with a patched

Re: cassandra full gc too long

2015-12-28 Thread Robert Coli
On Mon, Dec 28, 2015 at 5:57 PM, xutom wrote: > I have 5 nodes in my C* cluster, and each node has the same > configuration file(Cassandra-env.sh: MAX_HEAP_SIZE="32G" and > HEAP_NEWSIZE="8G"), and My Cassandra version is 2.1.1. Now I want to > export all data of one table,

why I got error "Could not retrieve endpoint rangs" when I run sstableloader?

2015-12-28 Thread 土卜皿
hi, all I used the sstableloader many times successfully, but I got the following error: [root@localhost pengcz]# /usr/local/cassandra/bin/sstableloader -u user -pw password -v -d 172.21.0.131 ./currentdata/keyspace/table Could not retrieve endpoint ranges: java.lang.IllegalArgumentException

Re: CQL Composite Key Seen After Table Creation

2015-12-28 Thread Robert Coli
On Tue, Dec 22, 2015 at 6:55 AM, Amir Hassani wrote: > Defining the “column_metadata” after table creation vs during table > creation seems to affect the cql schema. We are running a large > high-throughput Cassandra 2.1.10 cluster. During table creation, the client >

Re: why I got error "Could not retrieve endpoint rangs" when I run sstableloader?

2015-12-28 Thread Yuki Morishita
This is known issue. https://issues.apache.org/jira/browse/CASSANDRA-10700 It is fixed in not-yet-released version 2.1.13. So, you need to build from the latest cassandra-2.1 branch to try. On Mon, Dec 28, 2015 at 5:28 PM, 土卜皿 wrote: > hi, all >I used the

Re: why I got error "Could not retrieve endpoint rangs" when I run sstableloader?

2015-12-28 Thread 土卜皿
hi, Yuki Thank you very much! The issue's description almost fits to my case! 1. My Cassandra version is 2.1.11 2. my table has several colomn with collection type 3. Before failed this time, I can use sstableloader to load the data into this table, but I got this

Re:Re: cassandra full gc too long

2015-12-28 Thread xutom
Thanks for ur reply. Exactly I have splitted that table into 47*20=940 parts, I have 47 partitions and each partition also has 20 buckets, so everytime I execute such cql: select * from table where partition_id=a and bucket_id=b, and the number of each select result maybe 40-80 million. What