Total Cassandra newbie,使用Python客户端。
from cassandra.cluster import Cluster
cluster = Cluster(['127.0.0.1'])
session = cluster.connect()
我收到错误:
线程event_loop中的异常(很可能在解释器关闭期间引发):
追溯(最近的呼叫最后):
文件" /usr/lib/python2.7/threading.py",第551行,__bootstrap_inner
中 文件" /usr/lib/python2.7/threading.py" ;,第504行,在运行中
文件" /usr/local/lib/python2.7/dist-packages/cassandra_driver-1.0.2-py2.7-linux-x86_64.egg/cassandra/io/asyncorereactor.py" ;,第52行,在_run_loop中 :__exit__
我想创建我的第一张桌子并且无法通过会话。
query = "create table timeseries (
event_type text,
insertion_time timestamp,
event blob,
PRIMARY KEY (event_type, insertion_time)
)
WITH CLUSTERING ORDER BY (insertion_time DESC);"
session.execute(query)