문제

I had issues with reading a table from pycassa created with CQL3.

So followed this post Reading Cassandra 1.2 table with pycassa

Now trying to alter my table

ALTER TABLE tweets with COMPACT STORAGE ;

But getting an error.

Bad Request: line 1:32 missing '=' at 'STORAGE'

도움이 되었습니까?

해결책

You cant alter the underlying storage model. You'll have to re-create the table and add the WITH COMPACT STORAGE parameter.

On a side note, why not use the newer cassandra python driver that supports cql3.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top