I have a table with one column here :
User
- username (Primary key)
In this case column username is primary and partition key.
If I query using SELECT * FROM user
it will read data from all partition which break the rule Rule 2: Minimize the Number of Partitions Read
from this link http://www.datastax.com/dev/blog/basic-rules-of-cassandra-data-modeling
Is there any way to not break the rule when select all data from table ?