I am getting this error when trying to insert data in my new table with one of the columns of type list when size of the elements in the list go beyond 100.
But I am able to do insert even 400 records in old table with same config.
table(field1 text,field2 text,field3 timestamp,field4 text,field5 list, field6 timestamp, PRIMARY KEY ((field2), field1));
How can I resolve this issue? I am using java spring boot application
com.datastax.oss.driver.api.core.servererrors.InvalidQueryException: Cannot have more than 100 in a single assignment. Please use multiple assignments to set this value