Eshu
Eshu
Hudi version: 0.11.1 Spark version: 3.1.1 Storage: S3 AWS Glue: 3 Function ```scala import org.apache.spark.sql.{functions => fn} def readAndShow(path: String) { val df = spark.read.format("hudi").load(path) df.select(fn.min(fn.col("updated_at")), fn.min(fn.col("_hoodie_commit_time"))) show false val...
* Hudi version : 0.11.1 * Spark version : 3.1.1 * Storage (HDFS/S3/GCS..) : S3 * Running on Docker? (yes/no) : no * Environment: Glue 3 Issue happen quite rarely...
When the partition column contains the slash character ("/"), Hudi could write the data incorrectly or do not read the back. Test (I use some helpers to write and read...