Automatically set .batchSize to 1 if a table has a primary key that is also the partition key. Example tables as follows:
Example 1:
CREATE TABLE IF NOT EXISTS ks1.tbl1 (
pk1 int,
pk2 long,
c1 text,
c2 uuid,
PRIMARY KEY ((pk1,pk2))
);
Example 2:
CREATE TABLE IF NOT EXISTS ks1.tbl1 (
c1 text PRIMARY KEY,
c2 uuid
);
or use the default.