Anand Kumar Sankaran
Anand Kumar Sankaran
@matthoward `mvn clean verify` shows compile errors. ``` [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 01:44 min [INFO] Finished at: 2022-09-25T07:07:39-07:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile...
Thanks @matthoward, I was able to build your PR, run verify (which worked except for the `antlr` failures), publish to maven, create a version of `kafka connect` with the patched...
Thank you. I missed it. On Tue, 27 Sept 2022 at 02:07, Vojtěch Juránek ***@***.***> wrote: > @obelix74 as I mentioned under PR #3804 > , you have to replace...
@vjuranek Thank you, I went past that error. I used this `curl` command. ``` curl -i -X POST -H "Accept:application/json" -H "Content-Type:application/json" localhost:8083/connectors/ -d '{ "name": "inventory-connector", "config": { "connector.class":...
> storage @vjuranek Went past that, you were right. I missed that file. Thank you. Ran into the next error. ``` java.lang.NoSuchFieldError: TRANSACTION_PAYLOAD at io.debezium.connector.mysql.MySqlStreamingChangeEventSource.execute(MySqlStreamingChangeEventSource.java:888) at io.debezium.connector.mysql.MySqlStreamingChangeEventSource.execute(MySqlStreamingChangeEventSource.java:91) at io.debezium.pipeline.ChangeEventSourceCoordinator.streamEvents(ChangeEventSourceCoordinator.java:174) at...
Sorted it all out, I got the basics working. Thanks for your patience and helping me through this Vojtech :). On Tue, 27 Sept 2022 at 14:04, Vojtěch Juránek ***@***.***>...
@matthoward ``` 2022-09-27 22:46:05,234 INFO MySQL|dbserver1|snapshot For table 'inventory.customers' using select statement: 'SELECT `id`, `first_name`, `last_name`, `email`, `TS`, `TE` FROM `inventory`.`customers`' [io.debezium.relational.RelationalSnapshotChangeEventSource] 2022-09-27 22:46:05,246 INFO MySQL|dbserver1|snapshot Snapshot - Final stage...
@matthoward here is my update on testing so far. * I got your PR to compile and work with system versioned databases. Yay. * I see that existing rows show...
Matt Yes. This works fine. create table customers (id int auto_increment, first_name varchar(255) not null, last_name varchar(255) not null, email varchar(255) not null, primary key(id)) with system versioning; This does...
@matthoward Were you able to reproduce the failure above?