You normally won't use your primary key as partitioning key (although you can). It's OK to use another column. Remember: you only can have one cluster index per table.
Your decision should be based on your knowledge of the data (how is my data distributed, why should some pieces of information stay together in one partition, etc.).
HTH