You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Todd Nine (JIRA)" <ji...@apache.org> on 2014/09/01 04:46:20 UTC

[jira] [Created] (CASSANDRA-7854) Unable to select partition keys directly using IN keyword (no replacement for multi row multiget in thrift)

Todd Nine created CASSANDRA-7854:
------------------------------------

             Summary: Unable to select partition keys directly using IN keyword (no replacement for multi row multiget in thrift)
                 Key: CASSANDRA-7854
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-7854
             Project: Cassandra
          Issue Type: Bug
            Reporter: Todd Nine


We're converting some old thrift CF's to CQL.  We aren't looking to change the underlying physical structure, since this has proven effective in production.  In order to migrate, we need full select via multi equivalent.  In thrift, the format was as follows.

(scopeId, scopeType, nodeId, nodeType){ 0x00, timestamp }

Where we have deliberately designed only 1 column per row.  To translate this to CQL, I have defined the following table.

{code}
CREATE TABLE Graph_Marked_Nodes ( 
 scopeId uuid,
 scopeType varchar,
 nodeId uuid,
 nodeType varchar,
 timestamp bigint,
 PRIMARY KEY(scopeId, scopeType, nodeId, nodeType)
)
{code}

I then try to select using the IN keyword.

{code}
select timestamp from Graph_Marked_Nodes WHERE (scopeId , scopeType , nodeId , nodeType)  IN ( (5a391596-3181-11e4-a87e-600308a690e2, 'organization', 5a3a2708-3181-11e4-a87e-600308a690e2 ,'test' ),(5a391596-3181-11e4-a87e-600308a690e2, 'organization', 5a3a2709-3181-11e4-a87e-600308a690e2 ,'test' ),(5a391596-3181-11e4-a87e-600308a690e2, 'organization', 5a39fff7-3181-11e4-a87e-600308a690e2 ,'test' ) )
{code}

Which results in the following stack trace

{code}
Caused by: com.datastax.driver.core.exceptions.InvalidQueryException: Multi-column relations can only be applied to clustering columns: scopeid
	at com.datastax.driver.core.Responses$Error.asException(Responses.java:97)
	at com.datastax.driver.core.DefaultResultSetFuture.onSet(DefaultResultSetFuture.java:110)
	at com.datastax.driver.core.RequestHandler.setFinalResult(RequestHandler.java:235)
	at com.datastax.driver.core.RequestHandler.onSet(RequestHandler.java:367)
	at com.datastax.driver.core.Connection$Dispatcher.messageReceived(Connection.java:584)
{code}


This is still possible via the thrift API.  Apologies in advance if I've filed this erroneously.  I can't find any examples of this type of query anywhere.

Note that our size grows far too large to fit in a single physical partition (row) if we use only scopeId and scopeType, so we need all 4 data elements to be part of our partition key to ensure we have the distribution we need.






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)