Danny Chan
Danny Chan
> One is that the new data overwrites the old data Not sure if you are using the `upsert` operation by using the index for updating. If you are using...
cc @nsivabalan for taking care of this issue~
Can you try this PR: https://github.com/apache/hudi/pull/8088
There might be no good solutions for 0..x release, recently we have merged a PR that address this issue on master branch: https://github.com/apache/hudi/pull/10874, it would be involved in 1.0.0 GA...
> 2a0969c9972ef746d377dbddd278ef13bf3d299d For mor table, it should be fine if it is the upsert semantics.
There might be mutiple spark-core jars on your classpath so that the belowing code snippet does not work well: ```java } else if (HoodieSparkUtils.isSpark3_0) { "org.apache.spark.sql.adapter.Spark3_0Adapter" } else { "org.apache.spark.sql.adapter.Spark2Adapter"...
Thanks for the contribuiton, here is a patch for the fix: [7622.patch.zip](https://github.com/apache/hudi/files/15140670/7622.patch.zip) It would be greate if you can help to add some UTs.
Close it because it is inactive.
@beyond1920 Can you help for the review?
> Moves ConfigProperty, EnumDescription, EnumFieldDescription, HoodieConfig, TypedProperties from hudi-common to hudi-io module so that classes in hudi-io and hudi-hadoop-common modules can use config-related logic It may solves the dependency issue,...