Hi All, As I am creating oneself project for Cassandra Project in which I want to insert some random dummy data into my tables. Please tell me how to do this as in distributive nature? Below is just an example :- Table1 :- videos create table videos(videoid uuid PRIMARY KEY,title text,tag text,added_time timestamp,year int); Table2 :- videos_by_actor create table videos_by_actor(actor text,uploaded_time timestamp,videoid uuid,userid uuid,title text,primary key (actor,uploaded_time,videoid)); Table3:- users create table users(userid uuid,first_name text,last_name text,email text,join_year int,primary key(userid)); Table4:- user_login create table user_login(email text primary key,password text,userid uuid);
Please help me to know how to generate dummy data and insert into all tables which satisfy the distributive nature. Thanks. Nandan