如何使用 Pig 连接到受密码保护的 cassandra
我有一个 cassandra 集群,在 password.properties 文件中设置了用户名和密码,我无法弄清楚如何使用 Pig 的 CassandraStorage 向该集群加载和写入数据。没有密码,功能就可以了。
有什么帮助吗?
I have a cassandra cluster with username and password set in the password.properties file, I could'n figure out how to use pig's CassandraStorage to load and write data to this cluster. Without the password, the function is fine.
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 CassandraStorage#initSchema 中,您需要添加一个调用来构建 AuthenticationRequest 结构,并在 client#set_keyspace 之前添加对 client#login 的调用。
创建:https://issues.apache.org/jira/browse/CASSANDRA-3042
In CassandraStorage#initSchema you would want to add a call to build an AuthenticationRequest struct and add a call to client#login just before client#set_keyspace.
Created: https://issues.apache.org/jira/browse/CASSANDRA-3042