/CASSANDRA-3412
> [2]
> https://github.com/apache/cassandra/blob/trunk/src/java/org/apache/cassandra/service/StorageServiceMBean.java#L342
>
> On Wed, Aug 29, 2012 at 7:02 PM, Yang wrote:
> > I have 16 nodes, each of them should have only 6.25%, but now they all
> show
>
andra/service/StorageServiceMBean.java#L342
On Wed, Aug 29, 2012 at 7:02 PM, Yang wrote:
> I have 16 nodes, each of them should have only 6.25%, but now they all show
> 18.73%
> how is this possible? (this is version 1.1.2)
>
> thanks
> Yang
>
>
> $ nodetool -h loca
DML example,
insert into user_score_v3(name, highscore, x,y,z)
values ('abc', 299.76, 1001, '*', '*');
...
2012/4/26 Data Craftsman :
> Data model:
>
> REM CQL 3.0
>
>
> $> cqlsh --cql3
>
> drop COLUMNFAMILY user_score_v3;
>
> CREATE COLUMNFAMILY user_score_v3
> (name varchar,
> highscore
Data model:
REM CQL 3.0
$> cqlsh --cql3
drop COLUMNFAMILY user_score_v3;
CREATE COLUMNFAMILY user_score_v3
(name varchar,
highscore float,
x int,
y varchar,
z varchar,
PRIMARY KEY (name, highscore)
);
DML is as usual, as commom, as RDBMS SQL.
Query:
Top 3,
SELECT name, highscore,
Hello,
I am new to cassandra and was hoping if someone can tell me if the
following is possible.
Given I have a columnfamily with a list of users in each Row.
Each user has the properties: name, highscore, x, y, z.
I want to use name as the column key, but I want the columns to be sorted
by hi