From f970899a6d9c10e67e753787a695bebb48e43acc Mon Sep 17 00:00:00 2001 From: Randall Hauch Date: Tue, 25 Oct 2016 11:12:55 -0500 Subject: [PATCH] DBZ-133 Minor changes to JavaDoc --- .../io/debezium/connector/mysql/MySqlConnectorConfig.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/debezium-connector-mysql/src/main/java/io/debezium/connector/mysql/MySqlConnectorConfig.java b/debezium-connector-mysql/src/main/java/io/debezium/connector/mysql/MySqlConnectorConfig.java index 9c361c9f7..32c322586 100644 --- a/debezium-connector-mysql/src/main/java/io/debezium/connector/mysql/MySqlConnectorConfig.java +++ b/debezium-connector-mysql/src/main/java/io/debezium/connector/mysql/MySqlConnectorConfig.java @@ -103,8 +103,9 @@ public static enum SnapshotMode { INITIAL("initial"), /** - * Perform a snapshot of database schema(not include initial data in databases) only upon initial startup of a - * connector. + * Perform a snapshot of only the database schemas (without data) and then begin reading the binlog. + * This should be used with care, but it is very useful when the change event consumers need only the changes + * from the point in time the snapshot is made (and doesn't care about any state or changes prior to this point). */ SCHEMA_ONLY("schema_only"),