gong opened a new issue, #6636: URL: https://github.com/apache/inlong/issues/6636
### Description It generates four `RowKind` data: insert, update_before, update_after, delete when source is mysql cdc. We will count all RowKind data when computing metric of mysql cdc. HBase use upsert to write data and only need three `RowKind` data: insert, update_after, delete. Flink runtime will optimize code when sync mysql-cdc to HBase. Flink will use DropUpdateBeforeFunction#filter `update_before` data. We need HBase computing four `RowKind` data to keep consistent with mysql-cdc. So we will change return value to all `RowKind` type of HBaseDynamicTableSink#getChangelogMode. ### InLong Component InLong Sort ### Are you willing to submit PR? - [X] Yes, I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
