Re: Partition Key - Wide rows?

2016-10-06 Thread Saladi Naidu
ding on your dataset). Cheers, -PhilFrom: Ali Akhtar Sent: ‎2016-‎10-‎06 9:04 AM To: user@cassandra.apache.org Subject: Partition Key - Wide rows? Heya, I'm designing some tables, where data needs to be stored in the following hierarchy: Organization -> Team -> Project -> Iss

Re: Partition Key - Wide rows?

2016-10-06 Thread Jonathan Haddad
then you get one partition per org (probably bad depending on your > dataset). If partition key is (org id, team id, project id) then you will > have one partition per project which is probably fine ( again, depending on > your dataset). > > Cheers, > > -Phil > -----

Re: Partition Key - Wide rows?

2016-10-06 Thread Ali Akhtar
ing on > your dataset). > > Cheers, > > -Phil > -- > From: Ali Akhtar <ali.rac...@gmail.com> > Sent: ‎2016-‎10-‎06 9:04 AM > To: user@cassandra.apache.org > Subject: Partition Key - Wide rows? > > Heya, > > I'm designing some tables, wh

Partition Key - Wide rows?

2016-10-06 Thread Ali Akhtar
Heya, I'm designing some tables, where data needs to be stored in the following hierarchy: Organization -> Team -> Project -> Issues I need to be able to retrieve issues: - For the whole org - using org id - For a team (org id + team id) - For a project (org id + team id + project id) - If