ad1happy2go commented on issue #9967:
URL: https://github.com/apache/hudi/issues/9967#issuecomment-1789044958
@njalan When I am testing with newer version i.e 0.12.3, 0.13.1, 0.14.0 ,
its working ok.
Can you test this in your setup.
```
val path="file:///tmp/test1"
val df = spark.sql("select 1 as uuid, 'test' as name, 1 as ts")
df.write.format("hudi").option("hoodie.table.name","test1").option("hoodie.datasource.write.recordkey.field","uuid").mode("overwrite").save(path)
spark.read.format("hudi").load(path).count() // 1
val df2 = spark.sql("select 2 as uuid, 'test' as name, 1 as ts")
df.write.format("hudi").option("hoodie.table.name","test1").option("hoodie.datasource.write.recordkey.field","uuid").mode("overwrite").save(path)
spark.read.format("hudi").load(path).count() // 1
```
--
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]