python连接操作Cassandra容器集群

遇到的问题一:

                     python连接操作Cassandra容器集群_第1张图片

                     python连接操作Cassandra容器集群_第2张图片

                    python连接操作Cassandra容器集群_第3张图片

                         python连接操作Cassandra容器集群_第4张图片

添加9042端口映射:

python代码访问的是容器宿主机的地址,如何访问容器内的数据库呢,就让宿主机的端口与容器的端口映射,访问cassandra的端口是9042端口,所以要选择一端口映射到容器的9042端口,然后再去访问这个端口。

                     python连接操作Cassandra容器集群_第5张图片

遇到的问题二:

当容器节点创建名字为qimingwei的键空间keyspace时会出现此异常:

                       python连接操作Cassandra容器集群_第6张图片

解决方式一:

                      python连接操作Cassandra容器集群_第7张图片

解决方式二:

 在python中n代码中判断是否存在创建     

python调用

即可使用客户端接入数据库

from cassandra.cluster import Cluster
cluster = Cluster(["192.168.137.30"])  #Cassandra的host ip
session = cluster.connect('my_keyspace')

 

python cassandra 创建space table并写入和查询数据

from cassandra.cluster import Cluster

cluster = Cluster(["10.178.209.161"])
session = cluster.connect()
keyspacename = "demo_space"
session.execute("create keyspace %s with replication = {'class': 'SimpleStrategy', 'replication_factor': 1};" % keyspacename)
# use keyspace; create a sample table
session.set_keyspace(keyspacename)

s = session
try:
    s.execute("CREATE TABLE blobbytes (a ascii PRIMARY KEY, b blob)")
except:
    pass
params = ['key1', bytearray(b'blob1')]
s.execute("INSERT INTO blobbytes (a, b) VALUES (%s, %s)", params)
results = s.execute("SELECT * FROM blobbytes")
print "********************"
for x in results:
    print x.a, x.b


try:
    s.execute("CREATE TABLE list_test (a ascii PRIMARY KEY, b list)")
except:
    pass
params = ['some key here', [bytearray(b'blob1'), bytearray(b'hello world')]]
s.execute("INSERT INTO list_test (a, b) VALUES (%s, %s)", params)
results = s.execute("SELECT * FROM list_test")
print "********************"
for x in results:
    print x.a, x.b

 

 

 

你可能感兴趣的:(Cassandra)