You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to debezium data type mapping, semantic type(aka. name) describes how the Kafka Connect schema captures the meaning of the field using the name of the Kafka Connect schema for the field.
Example:
In the Risingwave -(Debezium Json)-> Kafka -(Debezium Json)-> JDBC connector -> PostgreSQL pipeline of our implementation, the DATE type in the message event appears like this:
If we use debezium jdbc connector, it can automatically convert c_date type to DATE by name. Currently, we are only seeing the c_date type as an integer in PostgreSQL. And we need additional configuration in the JDBC connector to parse c_date, so that we can see the DATE type in PostgreSQL.
The text was updated successfully, but these errors were encountered:
According to debezium data type mapping, semantic type(aka. name) describes how the Kafka Connect schema captures the meaning of the field using the name of the Kafka Connect schema for the field.
Example:
In the
Risingwave -(Debezium Json)-> Kafka -(Debezium Json)-> JDBC connector -> PostgreSQL
pipeline of our implementation, theDATE
type in the message event appears like this:Well in Debezium PG connector, it appears like this:
If we use debezium jdbc connector, it can automatically convert
c_date
type toDATE
by name. Currently, we are only seeing thec_date
type as aninteger
in PostgreSQL. And we need additional configuration in the JDBC connector to parsec_date
, so that we can see theDATE
type in PostgreSQL.The text was updated successfully, but these errors were encountered: