I'm designing a database schema where there are only 2 partition keys, however, both partitions will be accessed equally - every time I access partition A, I will also access partition B. Will this design suffer from hot partitioning?
From my understanding, hot partitioning occurs because of uneven accesses to the partitions resulting in some partitions being "hot". So I'm thinking cardinality does not matter as long as the accesses are even. Is this correct?