HI I want to read data from C* Cluster.
Schema is CREATE TABLE code( campaign_id_sub_partition text code text, PRIMARY KEY ((campaign_id_sub_partition),code)) ); Where I can have configurable codes in partition key as cassandra supports. campaign_id_sub_partition is appx 10 characters code field is appx 12~20 characters Query : 1) How much data I can put in one partition ? 2) I want to read data from cassandra as SELECT * from code where campaign_id_sub_partition = 'XXX-1'; Is reading whole partition at one time is feasible or shall I use pagination ? -- Raman Gugnani 8588892293