Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/5964#discussion_r188545721
--- Diff:
flink-connectors/flink-connector-cassandra/src/main/java/org/apache/flink/streaming/connectors/cassandra/CassandraSink.java
---
@@ -258,6 +259,17 @@ public CassandraSinkBuilder(DataStream<IN> input,
TypeInformation<IN> typeInfo,
return this;
}
+ /**
+ * Sets the keyspace to be used.
+ *
+ * @param keyspace keyspace to use
+ * @return this builder
+ */
+ public CassandraSinkBuilder<IN> setKeyspace(String keyspace) {
--- End diff --
rename to `setDefaultKeyspace`
---