nsivabalan commented on issue #1695:
URL: https://github.com/apache/hudi/issues/1695#issuecomment-638300159
```
spark.read.parquet(basepath+"/*").show(false)
+-------------------+--------------------+------------------+----------------------+------------------------------------------------------------------------+------+------+----------+----+
|_hoodie_commit_time|_hoodie_commit_seqno|_hoodie_record_key|_hoodie_partition_path|_hoodie_file_name
|fanme |lname |ts
|uuid|
+-------------------+--------------------+------------------+----------------------+------------------------------------------------------------------------+------+------+----------+----+
|20200603155652 |20200603155652_0_2 |20 |2020-01-30
|a9e4f829-1a0d-49e0-9ed5-254808a4a4bf-0_0-22-12006_20200603155652.parquet|prabil|bal
|2020-01-30|20 |
|20200603155652 |20200603155652_2_1 |10 |2019-10-15
|0e790488-ebf3-479a-9044-d819b620d085-0_2-22-12008_20200603155652.parquet|pd
|desai1|2019-10-15|10 |
|20200603155652 |20200603155652_1_3 |11 |2019-10-14
|2ec0b40d-7a44-496b-9c92-68fe920c6111-0_1-22-12007_20200603155652.parquet|pp
|sai |2019-10-14|11 |
+-------------------+--------------------+------------------+----------------------+------------------------------------------------------------------------+------+------+----------+----+
```
After update:
```
spark.read.parquet(basepath+"/*").show(false)
+-------------------+--------------------+------------------+----------------------+------------------------------------------------------------------------+------+-----+----------+----+
|_hoodie_commit_time|_hoodie_commit_seqno|_hoodie_record_key|_hoodie_partition_path|_hoodie_file_name
|fanme |lname|ts
|uuid|
+-------------------+--------------------+------------------+----------------------+------------------------------------------------------------------------+------+-----+----------+----+
|20200603160032 |20200603160032_1_4 |11 |2019-10-18
|1fed9735-8932-4ac3-bdb0-d5e94e23267c-0_1-56-25537_20200603160032.parquet|pp
|sai |2019-10-18|11 |
|20200603160032 |20200603160032_1_5 |25 |2019-10-18
|1fed9735-8932-4ac3-bdb0-d5e94e23267c-0_1-56-25537_20200603160032.parquet|rg
|fg |2019-10-18|25 |
|20200603155652 |20200603155652_0_2 |20 |2020-01-30
|a9e4f829-1a0d-49e0-9ed5-254808a4a4bf-0_0-22-12006_20200603155652.parquet|prabil|bal
|2020-01-30|20 |
|20200603160032 |20200603160032_0_6 |10 |2019-10-17
|17f34208-cb9e-4a39-b796-a7168d3d089a-0_0-56-25536_20200603160032.parquet|pd
|desai|2019-10-17|10 |
+-------------------+--------------------+------------------+----------------------+------------------------------------------------------------------------+------+-----+----------+----+
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]