kirillklimenko commented on issue #11348:
URL: https://github.com/apache/hudi/issues/11348#issuecomment-2144466027

   @ad1happy2go, here is everything I have in my streamer: 
[hudi-upsert-issue.zip](https://github.com/user-attachments/files/15530167/hudi-upsert-issue.zip)
   
   I'm running an application on AWS EMR 7.1 (Hudi 0.14.1) with AWS Glue sync:
   
   1. Produced `{"sha512": "hash", "column1": "before", "column2": "before", 
"update_dt": "2024-01-01T00:00:00.000000"}` to the Kafka topic
   2. Produced `{"sha512": "hash", "column2": "after", "update_dt": 
"2024-02-02T00:00:00.000000"}` to the Kafka topic
   
   Tested with:
   
   1. AWS Glue
   ```sql
   use default;
   select sha512, column1, column2 from default.bronze_ro; -- hash, before, 
before
   select sha512, column1, column2 from default.bronze_rt; -- hash, null, after
   ```
   3. Spark SQL
   ```python
   spark.sql("select sha512, column1, column2 from default.bronze_ro").show()  
# hash, before, before
   spark.sql("select sha512, column1, column2 from default.bronze_rt").show()  
# hash, null, after
   ```


-- 
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]

Reply via email to