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), Time)
) WITH COMPACT STORAGE;
”””
)
As I know, the system keyspace is used to store the meta data, but the strategy
is localStrategy, which only store meta data of local node.
So I want to know whether table is created in all the nodes, should I add
consistency_level setting to the above statement to make sure
“create table” will be executed in all the nodes?
Thanks.
Peter