Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FLINK-7415][Cassandra Connector] Add comments for cassandra-connector test classes #4519

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add comments for CassandraTupleSinkExample.java
  • Loading branch information
yew1eb committed Aug 10, 2017
commit 3b455b32ba2b7d1a22b765b69490f6dd2d5d056b
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
/**
* This is an example showing the to use the Tuple Cassandra Sink in the Streaming API.
*
* <p>The example assumes that a table exists in a local cassandra database, according to the following query:
* <p>The example assumes that a table exists in a local cassandra database, according to the following queries:
* CREATE KEYSPACE IF NOT EXISTS test WITH replication = {'class': 'SimpleStrategy', 'replication_factor': ‘1’};
* CREATE TABLE IF NOT EXISTS test.writetuple(element1 text PRIMARY KEY, element2 int)
*/
public class CassandraTupleSinkExample {
Expand Down