我在 Kubernetes(3 个实例)上运行 Cassandra,并且想将其公开给外部,我的应用程序还没有在 Kubernetes 中。所以我创建了一个负载平衡服务,如下所示:
apiVersion: v1
kind: Service
metadata:
namespace: getquanty
labels:
app: cassandra
name: cassandra
annotations:
kubernetes.io/tls-acme: "true"
spec:
clusterIP:
ports:
- port: 9042
name: cql
nodePort: 30001
- port: 7000
name: intra-node
nodePort: 30002
- port: 7001
name: tls-intra-node
nodePort: 30003
- port: 7199
name: jmx
nodePort: 30004
selector:
app: cassandra
type: LoadBalancer
结果是这样的:
NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
cassandra 10.55.249.88 GIVEN_IP_GCE_LB 9042:30001/TCP,7000:30002/TCP,7001:30003/TCP,7199:30004/TCP 26m
我可以使用 sh (cqlsh GIVEN_IP_GCE_LB) 进行连接,但是当我尝试使用节点的 datastax 驱动程序将数据添加到 Cassandra 时,我得到了这个:
message: 'Cannot achieve consistency level SERIAL',
info: 'Represents an error message from the server',
code: 4096,
consistencies: 8,
required: 1,
alive: 0,
coordinator: '35.187.166.68:9042' },
'10.52.4.32:9042': 'Host considered as DOWN',
'10.52.2.15:9042': 'Host considered as DOWN' },
info: 'Represents an error when a query cannot be performed because no host is available or could be reached by the driver.',
message: 'All host(s) tried for query failed. First host tried, 35.187.166.68:9042: ResponseError: Cannot achieve consistency level SERIAL. See innerErrors.' }
我的第一个想法是我也需要公开其他端口,所以我做了(节点内,tls-intra-node,jmx),但这是同样的错误。
Kubernetes 允许您访问代理,我尝试使用为 pod 构建的 URL 从我的机器进行代理,以测试我是否可以访问,但我无法使用 cqlsh 连接:
http://127.0.0.1:8001/api/v1/namespaces/qq/pods/cassandra-0:cql/proxy
我没有想法,剩下要尝试的一件事是公开每个实例(为每个实例创建一个服务),这非常丑陋,但它会让我从外部连接到节点,直到我将应用程序迁移到 Kubernetes。
有没有人知道如何将 Cassandra 节点公开到 Internet 并使 Datastax 驱动程序知道所有节点?感谢您的时间。