Sam-Serpoosh commented on issue #8519:
URL: https://github.com/apache/hudi/issues/8519#issuecomment-1544320455

   @the-other-tim-brown This is done via:
   
   - Postgres (in AWS RDS) `11.16`
   - Debezium `2.1.2.Final`
   
   While we're at it, these `created_at` and `event_ts` fields are worrisome as 
well I **maybe** since they don't seem to be interpreted as simple/primitive 
`long` types?
   
   ```json
   {
     ...
     "after": {
       "<topic_prefix>.<schema_name>.samser_customers.Value": {
         "id": 1,
         "name": "Bob",
         "age": 40,
         "created_at": {
           "long": 1683661733071814
         },
         "event_ts": {
           "long": 1681984800000
         }
       }
     },
     ...
   }
   ```
   
   Their corresponding schema portion:
   
   ```json
   {
     ...
     {
       "name": "created_at",
       "type": [
         "null",
         {
           "type": "long",
           "connect.version": 1,
           "connect.name": "io.debezium.time.MicroTimestamp"
         }
       ],
       "default": null
     },
     {
       "name": "event_ts",
       "type": [
         "null",
         "long"
       ],
       "default": null
     }
     ...
   }
   ```


-- 
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: commits-unsubscr...@hudi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to