bithw1 opened a new issue, #17515:
URL: https://github.com/apache/hudi/issues/17515
### Describe the problem you faced
Hi,
I have a simple MOR table, defined as follows:
```
create table test_hudi_table_mor (
a int,
b int,
c int
) using hudi
partitioned by (c)
options (
primaryKey = 'a',
preCombineField = 'b',
type = 'mor'
);
```
Then, I do insert for twice,
```
insert into test_hudi_table_mor values(1,1,1);
insert into test_hudi_table_mor values(2,2,2);
```
When I looked at the files created, I find two parquet files, no log files
Then, I do one update
```
update test_hudi_table_mor set b = 11 where a =1;
```
Then, I find a log file, so I would ask, why the two insert operations
doesn't generate log files and only update generate, thanks.
### To Reproduce
1.
2.
3.
4.
### Expected behavior
1
### Environment Description
* Hudi version:
* Spark version:
* Flink version:
* Hive version:
* Hadoop version:
* Storage (HDFS/S3/GCS..):
* Running on Docker? (yes/no):
### Additional context
1
### Stacktrace
```shell
```
--
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]