我有代码
from uuid import uuid4
from uuid import uuid1
from cassandra.cqlengine import columns, connection
from cassandra.cqlengine.models import Model
from cassandra.cqlengine.management import sync_table
class BaseModel(Model):
__abstract__ = True
id = columns.UUID(primary_key=True, default=uuid4)
created_timestamp = columns.TimeUUID(primary_key=True,
clustering_order='DESC',
default=uuid1)
deleted = columns.Boolean(required=True, default=False)
class OtherModel(BaseModel):
__table_name__ = 'other_table'
name = columns.Text(required=True, default='')
if __name__ == '__main__':
connection.setup(hosts=['localhost'],
default_keyspace='test')
sync_table(OtherModel)
中有一个now()
功能cassandra
,current time
可以创建记录。
我试图用INSERT
查询创建记录。
cqlsh> INSERT INTO test.other_table ("id", "created_timestamp", "deleted", "name") VALUES (3c156369-6d71-40e2-933f-b48fdda7681f, now(), false, 'test');
但是当我尝试
created_timestamp = columns.TimeUUID(primary_key=True,
clustering_order='DESC',
default='now()')
它在验证中给出错误。
我试图覆盖TimeUUID
列,并now()
从validate
函数返回。
但它卡在插入记录中。
2017-01-16 12:20:06 [DEBUG] cassandra.cqlengine.connection: INSERT INTO test.other_table ("deleted", "id", "created_timestamp", "name") VALUES (%(0)s, %(1)s, %(2)s, %(3)s)
...
...
result = session.execute(query, params, timeout=timeout)
File "cassandra/cluster.py", line 1710, in cassandra.cluster.Session.execute (cassandra/cluster.c:30976)
return self.execute_async(query, parameters, trace, custom_payload, timeout).result()
File "cassandra/cluster.py", line 3343, in cassandra.cluster.ResponseFuture.result (cassandra/cluster.c:68510)
raise self._final_exception
InvalidRequest: Error from server: code=2200 [Invalid query] message="Invalid STRING constant (now()) for "created_timestamp" of type timeuuid"
我尝试使用直接插入查询。
from cassandra.cqlengine import connection
if __name__ == '__main__':
connection.setup(hosts=['localhost'],
default_keyspace='test')
session = connection.get_session()
insert_query = """INSERT INTO test.other_table ("id", "created_timestamp", "deleted", "name") VALUES (%(0)s, %(1)s, %(2)s, %(3)s)"""
params = {'0': '3c156369-6d71-40e2-933f-b48fdda7681f', '2': False, '3': 'name', '1': 'now()'}
session.execute(insert_query, params)
但这也给出了同样的错误:(。
有没有办法default
从python
驱动程序中传递 cassandra 函数?