-
Bug
-
Resolution: Done
-
Major
-
3.2.0.Alpha1
-
None
-
False
-
-
False
In order to make your issue reports as actionable as possible, please provide the following information, depending on the issue type.
Bug report
First created the table in mysql source and then created the source and sink connector in kafka and did not delete and update the data in the table, get a error
What Debezium connector do you use and what version?
debezium-connector-mysql-3.2.0.Alpha1
debezium-connector-jdbc-3.2.0.Alpha1
What is the connector configuration?
{
"name": "mysql-connector",
"config":
}
What is the captured database version and mode of deployment?
Mysql v5.7.43 for Centos 7.6
What behavior do you expect?
Synchronize mysql table data to oracle and convert table names and column names to uppercase.
What behavior do you see?
get a error: Error transforming field names: Invalid value: null used for required field: "ID", schema type: INT32 (io.debezium.connector.jdbc.transforms.FieldNameTransformation:142)
org.apache.kafka.connect.errors.DataException: Invalid value: null used for required field: "ID", schema type: INT32
Do you see the same behaviour using the latest released Debezium version?
with latest Alpha1
Do you have the connector logs, ideally from start till finish?
(You might be asked later to provide DEBUG/TRACE level log)
<Your answer>
How to reproduce the issue using our tutorial deployment?
-
- sink-connector
"transforms": "schema-uppercase,tablename-uppercase",
"transforms.schema-uppercase.type": "io.debezium.connector.jdbc.transforms.CollectionNameTransformation",
"transforms.schema-uppercase.collection.naming.style": "upper_case",
"transforms.tablename-uppercase.type": "io.debezium.connector.jdbc.transforms.FieldNameTransformation",
"transforms.tablename-uppercase.column.naming.style": "upper_case",
Feature request or enhancement
For feature requests or enhancements, provide this information, please:
Which use case/requirement will be addressed by the proposed feature?
<Your answer>
Implementation ideas (optional)
<Your answer>