How to use the bigint.unsigned.handling.mode parameter in a Paimon Flink run or Flink CDC pipeline to avoid converting bigint unsigned values to decimal? #3813
Unanswered
SheryaSong
asked this question in
Q&A
Replies: 1 comment 1 reply
-
what version are you using ? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The source field is of type bigint unsigned, but when it is written to Paimon by MySQL CDC, it is automatically converted to decimal(20, 0).
I added
--mysql_conf bigint.unsigned.handling.mode=long
to the Flink run statement, but it did not work.If I added
bigint.unsigned.handling.mode: long
to Flink CDC Pipeline yaml,it did not start.Reference: GitHub Discussion
Beta Was this translation helpful? Give feedback.
All reactions