Sean Hwang
Sean Hwang

Reputation: 451

Is there any way to increment specific field by fixed number without writing custom SMTs in Kafka Connect?

Let's assume that I have a table 'student' like below and use Debezium MySQL source connector and JDBC sink connector.

id class_id name age
1 1 'Alice' 15
2 1 'Bob' 16
3 2 'Charlie' 15

When I CDC this table, I just want 'id' and 'class_id' column to be incremented by 1 billion.

The high level architecture diagram to CDC(Change Data Capture) would be like below.

DB1(MySQL) -> MySQL source connector(Debezium) -> Kafka -> (Unwrap SMT) -> (RegexRouter SMT) -> JDBC sink connector -> (?) -> DB2(MySQL)

Would it be any out-of-the-box SMT(s) to be placed on '(?)' part to achieve it, or should I just implement custom SMT?

Upvotes: 0

Views: 177

Answers (1)

OneCricketeer
OneCricketeer

Reputation: 191874

You could do it in Kafka Streams,. Or use ksqlDB or other stream processing framework. Otherwise, if you need data manipulated before written to Kafka that doesn't match a builtin transform, you'll need your own

Upvotes: 0

Related Questions