Cassandra:插入timeuuid错误

问题描述 投票:4回答:2

我有以下表格

create table test(
         userId varchar,
         notifId timeuuid,
         notification varchar,
         time bigint,read boolean,
         primary key(userId, notifId)) with clustering order by (notifId desc);

我正在运行以下查询。

PreparedStatement   pstmt  = session.prepare("INSERT INTO notifications(userId, notifId, notification, time, read) VALUES(?, now(), ?, ?, ?)");

BoundStatement      boundStatement  = new BoundStatement(pstmt);
        session.execute(boundStatement.bind("123", "hello", new Date().getTime(), false));

我得到了以下错误。

Exception in thread "main" com.datastax.driver.core.exceptions.InvalidQueryException: Type error: cannot assign result of function now (type timeuuid) to notifid (type 'org.apache.cassandra.db.marshal.ReversedType(org.apache.cassandra.db.marshal.TimeUUIDType)')
    at com.datastax.driver.core.exceptions.InvalidQueryException.copy(InvalidQueryException.java:35)
    at com.datastax.driver.core.ResultSetFuture.extractCause(ResultSetFuture.java:277)
    at com.datastax.driver.core.Session.toPreparedStatement(Session.java:281)
    at com.datastax.driver.core.Session.prepare(Session.java:172)
    at com.example.cassandra.SimpleClient.loadData(SimpleClient.java:130)
    at com.example.cassandra.SimpleClient.main(SimpleClient.java:214)
Caused by: com.datastax.driver.core.exceptions.InvalidQueryException: Type error: cannot assign result of function now (type timeuuid) to notifid (type 'org.apache.cassandra.db.marshal.ReversedType(org.apache.cassandra.db.marshal.TimeUUIDType)')
    at com.datastax.driver.core.ResultSetFuture.convertException(ResultSetFuture.java:307)

我使用的是cassandra 1.2.2。

cassandra cql datastax-java-driver
2个回答
6
投票

你应该插入通过datastax驱动程序生成的timeuuid。在你的情况下,由于你使用的是版本1的timeuuid,你必须使用

UUIDs.timeBased()

你可以在以下参考资料中找到上述内容

http:/www.datastax.comdriversjava2.0comdatastaxdrivercoreutilsUUIDs.html


0
投票

它看起来像一个bug(类似或相同于 https:/issues.apache.orgjirabrowseCASSANDRA-5472。),而且你使用的是很老的Cassandra版本。我建议你升级到最新的1.2.x版本,重新测试你的场景,并提交一个问题,如果问题仍然存在的话。

© www.soinside.com 2019 - 2024. All rights reserved.