使用CQLEngine更新UDT集

时间:2016-12-13 20:57:31

标签: python cassandra cqlengine

我是Cassandra的新手,我尝试使用CQLEngine ORM来更新包含UDT的set列,但我不能及文档对自定义类型没有任何说明。< / p>

我的代码是;

class MyType(UserType):

    val = columns.Text()
    point = columns.Integer()
    key = columns.Text()

    def __init__(self, val, point, key, **values):
        super().__init__(**values)
        self.val = val
        self.point = point
        self.key = key


class MyModel(Model):

    myid = columns.UUID(primary_key=True)
    set_clm = columns.Set(columns.Integer)
    mytype = columns.Set(UserDefinedType(MyType))

    def __init__(self, set_clm, mytype, **values):
        super().__init__(**values)
        self.myid = uuid4()
        self.set_clm = set_clm
        self.mytype = mytype



s = MyModel.objects(myid="2b3adb7d-9e68-49fc-9aa0-26dbec607f9d").update(
    mytype__add=set(MyType(val="1", point=2, key="3"))
)

MyModel最初在集合中保留NULL,但是当我尝试更新它时,我收到以下错误:

cassandra.InvalidRequest: Error from server: code=2200 [Invalid query] message="Invalid set literal for mytype: value 'point' is not of type frozen<mytype>"

'point' is not of type frozen<mytype> - &gt;每当我重新运行代码时,此部分会随机更改(下次我运行时,我会在&#39; val&#39;列等处获得相同的错误)。

任何人都可以帮助我添加UDT设置吗?

1 个答案:

答案 0 :(得分:0)

行。我已经解决了。我正在为那些在Google上找到它的人写下来。

这是添加到集合的正确方法:mytype__add={MyType(val="1", point=2, key="3")}

并为MyType实现__hash__函数,例如:

def __hash__():
    return hash(self.__repr__())

但具有更智能的__hash__功能。这只是一个例子。希望它对其他人有所帮助。