它支持aws密钥空间吗

7ajki6be  于 2021-06-09  发布在  Cassandra
关注(0)|答案(1)|浏览(396)

有人试着用 AWS Keyspace 用于索引和 AWS S3 对于块存储?我不断得到协议版本不匹配的错误。

pkln4tw6

pkln4tw61#

经过几个小时的研究,我让它运行起来。所以问题基本上是主机ssl验证,默认设置为true。
以下配置与aws keyspace+loki docker grafana完美配合/loki:master-1664a98 and Cassandra配置

client_configs+: {
     cassandra+: {
       consistency: 'LOCAL_QUORUM',
       port: 9142,
       host_verification: false,
       disable_initial_host_lookup: false,
       SSL: true,
       timeout: "60s",
       connect_timeout: "3m0s"
     }
    },

您可以根据您的需求选择本地的一个。

相关问题