我正在使用带有Ubuntu-14图像的odroid-xu4上的cassandra。 (我也尝试过Ubuntu-15图像。(http://odroid.com/dokuwiki/doku.php?id=en:xu3_release_linux_ubuntu)
我安装了最新的cassandra及其python驱动程序。
然而,尝试从cassandra python-driver连接到它会产生一个严重的总线错误并使python退出。甚至没有提出异常。
from cassandra.cluster import Cluster
k = Cluster(['127.0.0.1'])
k.connect()
#crashes the python. Bus error appears on the command prompt/terminal
有人能指出我正确的方向吗?看起来事情之间有些不相容。我确认我可以成功cqlsh到cassandra。
答案 0 :(得分:0)
你试过吗
k.connect(keyspace)
答案 1 :(得分:0)
在早期版本的已编译反序列化扩展中存在对齐问题。这在驱动程序版本3.1.0及更高版本的PYTHON-450中得到解决。