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

2015-03-17 Thread 鄢来琼
I take care it? Or how Cassandra guarantee it? Regards, Peter 发件人: daemeon reiydelle [mailto:daeme...@gmail.com] 发送时间: 2015年3月17日 15:04 收件人: user@cassandra.apache.org 抄送: Saladi Naidu 主题: Re: Is Table created in all the nodes if the default consistency level used Oops, my bad. Not "master no

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

2015-03-17 Thread daemeon reiydelle
data node? Because master node is down, table can not be created on data > nodes. > > > > Regards, > > Peter > > > > > > > > *发件人:* daemeon reiydelle [mailto:daeme...@gmail.com] > *发送时间:* 2015年3月17日 13:38 > *收件人:* user@cassandra.apache.org; Saladi Naidu >

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

2015-03-16 Thread 鄢来琼
: daemeon reiydelle [mailto:daeme...@gmail.com] 发送时间: 2015年3月17日 13:38 收件人: user@cassandra.apache.org; Saladi Naidu 主题: Re: Is Table created in all the nodes if the default consistency level used If I am following your thread correctly, I think you might be confusing the "creeation" of a tabl

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

2015-03-16 Thread daemeon reiydelle
-------- > *From:* 鄢来琼 > *To:* "user@cassandra.apache.org" > *Sent:* Monday, March 16, 2015 2:13 AM > *Subject:* Re: Is Table created in all the nodes if the default > consistency level used > > Hi Daemeon, > > Yes, I use “NetworkTopologyStrateg

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

2015-03-16 Thread Saladi Naidu
less than number of nodes, you will face AUTH issues. Naidu Saladi From: 鄢来琼 To: "user@cassandra.apache.org" Sent: Monday, March 16, 2015 2:13 AM Subject: Re: Is Table created in all the nodes if the default consistency level used #yiv5346526530 #yiv5346526530 -- _fil

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

2015-03-16 Thread Eric Stevens
nt to guarantee table is created in all the nodes. > > > > Peter > > > > *发件人:* 鄢来琼 > *发送时间:* 2015年3月16日 15:14 > *收件人:* user@cassandra.apache.org > *主题:* Re: Is Table created in all the nodes if the default consistency > level used > > > > Hi Daemeon,

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

2015-03-16 Thread 鄢来琼
: Is Table created in all the nodes if the default consistency level used Hi Daemeon, Yes, I use “NetworkTopologyStrategy” strategy for “Table_test”, but “System keyspace” is Cassandra internal keyspace, its strategy is localStrategy. So my question is how to guarantee “Table_test” is created in all

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

2015-03-16 Thread 鄢来琼
reiydelle [mailto:daeme...@gmail.com] 发送时间: 2015年3月16日 14:35 收件人: user@cassandra.apache.org 主题: Re: Is Table created in all the nodes if the default consistency level used If you want to guarantee that the data is written to all nodes before the code returns, then yes you have to use "consis

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)