Hello everyone
I have a problem with the connector to SQL Server with the configuration "snapshot.mode": "schema_only", the data topics are not created and the information is not replicated to Kafka. Only one topic was created with the name of the server and there are no errors in the logs.
Previously I tried setting "snapshot.mode": "initial" and it worked fine, but I don't require all the old information from the database. (more than 300GB of data)
The configuration is the following:
{
"connector.class": "io.debezium.connector.sqlserver.SqlServerConnector",
"tasks.max": "1",
"transforms": "unwrap",
"include.schema.changes": "true",
"topic.prefix": "serv3db",
"schema.history.internal.kafka.topic": "schema-changes1.mydb",
"snapshot.new.tables": "parallel",
"transforms.unwrap.drop.tombstones": "false",
"database.history.skip.unparseable.ddl": "true",
"transforms.unwrap.type": "io.debezium.transforms.ExtractNewRecordState",
"value.converter": "io.confluent.connect.avro.AvroConverter",
"key.converter": "io.confluent.connect.avro.AvroConverter",
"database.allowPublicKeyRetrieval": "true",
"database.encrypt": "false",
"database.dbname": "myDB",
"database.user": "kafka",
"database.names": "myDB",
"time.precision.mode": "connect",
"
database.server.name": "serv3db",
"schema.history.internal.kafka.bootstrap.servers": "
192.168.101.20:30842",
"database.port": "1433",
"value.converter.schema.registry.url": "
http://192.168.101.20:32609",
"table.exclude.list": "dbo.TEST_Documents,dbo.TEST_JOBS",
"database.hostname": "192.168.100.49",
"database.password": "******",
"name": "mssql-source-connector-mydb1",
"key.converter.schema.registry.url": "
http://192.168.101.20:32609",
"snapshot.mode": "schema_only"}
Do I have to make any changes in the configuration so that it replicates the current information and not all?
The version of the connector is 2.0.1.Final .
Thanks