



                A KeySpace has Tables
                
                A table has a Primary Key w/ a Partition Key as part
                
                ------------------------------------------------
                
                A Cluster (Ring) has Nodes
                
                A Node hosts a set of Token Ranges
                
                ---------------------------------------------
                
                A single Cassandra Table exists on a Number of Nodes
                
                a query 
                
                SELECT * from Table Where x = 21
                
                the partition hash the x (21) and finds a Token value of 12123
                then Cassandra match that taken value to the Node hosting that 
                taken range, and queries that node for the record
                
                -------------------------------------------------------
                
                Node #89 hosts tokens from 3 Tables in 2 KeySpace
                
                
