I have a query in Cassandra
select count(pk1) from tableA where pk1=xyz
Table is :
create table tableA 
(
    pk1 uuid,
    pk2 int,
    pk3 text,
    pk4 int,
    fc1 int,
    fc2 bigint,
    ....
    fcn blob,
    primary key (pk1, pk2 , pk3 , pk4)
The query is executed often and takes up to 2s to execute.
I am wondering if there will be any performance gain if refactoring to:
select count(1) from tableA where pk = xyz