Re: DataStax Enterprise Amazon AMI Launch Error

2015-03-15 Thread Vanessa Gligor
I have used m3.medium and m3.large On Sat, Mar 14, 2015 at 2:36 AM, Patrick McFadin wrote: > What size of instance are you using? It looks like you aren't at to get > resources set up in time. > > > On Thursday, March 12, 2015, Vanessa Gligor > wrote: > >> When I try to launch an EC2 Instance u

Re: Is Table created in all the nodes if the default consistency level used

2015-03-15 Thread daemeon reiydelle
If you want to guarantee that the data is written to all nodes before the code returns, then yes you have to use "consistency all". Otherwise there is a small risk of outdated data being served if a node goes offline longer than hints timeouts. Somewhat looser options that can assure multiple copi

Is Table created in all the nodes if the default consistency level used

2015-03-15 Thread 鄢来琼
Could you tell me whether the meta data of the new table are build in all the nodes after execute the following statement. cassandra_session.execute_async( “““CREATE TABLE Table_test( ID uuid, Time timestamp, Value double, Date timestamp, PRIMARY KEY ((ID,Date)

Re: Begginer with cassandra Apache - Gossip

2015-03-15 Thread Akhil Mehra
Hi Jean, Check our the following urls: https://github.com/apache/cassandra/blob/trunk/src/java/org/apache/cassandra/gms/ https://github.com/apache/cassandra/blob/trunk/src/java/org/apache/cassandra/

Re: Begginer with cassandra Apache - Gossip

2015-03-15 Thread jean paul
Ok i will read all documents :) thanks a lot for help :) Please, can i you send me some details (url of source code) about the implementation of gossip protocol used in cassandra ? thanks a lot for help :) i find this https://github.com/bpot/node-gossip ? Bests. 2015-03-15 22:38 GMT+01:00 Akhil

Re: Begginer with cassandra Apache - Gossip

2015-03-15 Thread Akhil Mehra
Hi Jean, I have written three article that might be of help to you: http://abiasforaction.net/an-introduction-to-apache-cassandra/ http://abiasforaction.net/cassandra-architecture/

Begginer with cassandra Apache - Gossip

2015-03-15 Thread jean paul
Hello All, Please, i'm newer with cassandra Apache. i'm sooo interested. i know some details about its architecture, some details also about gossip protocol. I'd like to test it, to more understand :) i ask if there is a howto tutorial that can help me ? Thanks a lot for help. Best Regards.

bootstrap failure and strange gossiper state

2015-03-15 Thread Karl Rieb
I am also experiencing issues bootstrapping new nodes in my 2.0.10 Cassandra cluster. The first attempt to bootstrap ALWAYS fails, followed by a second bootstrap attempt that ALWAYS succeeds. The first attempt at bootstrapping fails with: INFO [main] 2015-03-15 02:41:02,550 StorageService.java

Re: IO scheduler for SSDs on EC2?

2015-03-15 Thread Roni Balthazar
Hi Ali, The best practice is to use the noop scheduler on array of SSDs behind your block device (Hardware RAID controller). If you are using only one SSD disk, the deadline scheduler is the best choice to reduce IO latency. It is not recommended to set cfq on SSDs disks. Regards, Roni Balthazar

Re: IO scheduler for SSDs on EC2?

2015-03-15 Thread Dor Laor
On Sun, Mar 15, 2015 at 2:03 PM, Ali Akhtar wrote: > I was watching a talk recently on Elasticsearch performance in EC2, and > they recommended setting the IO scheduler to noop for SSDs. Is that the > case for Cassandra as well, or is it recommended to keep the default > 'deadline' scheduler for

IO scheduler for SSDs on EC2?

2015-03-15 Thread Ali Akhtar
I was watching a talk recently on Elasticsearch performance in EC2, and they recommended setting the IO scheduler to noop for SSDs. Is that the case for Cassandra as well, or is it recommended to keep the default 'deadline' scheduler for Cassandra? Thanks.