adonis0147 opened a new issue, #25735: URL: https://github.com/apache/doris/issues/25735
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Version master ### What's Wrong? ```shell W1018 18:06:41.464733 42919 inverted_index_writer.cpp:485] Inverted index writer finish error occurred: No sub-file with id _0.frq found W1018 18:06:41.466969 42919 memtable_flush_executor.cpp:100] Flush memtable failed with res = [E-6002]failed to finalize segment: [E-6002]Inverted index writer finish error occurred ``` ### What You Expected? Flush the memtable successfully. ### How to Reproduce? Use S3 file system as the remote file system and try to flush data on S3 file system. ```shell mysql> CREATE TABLE `t1` ( `name` varchar(50) NOT NULL, `fatherName` varchar(50) NULL, INDEX fatherName_idx (`fatherName`) USING INVERTED PROPERTIESz("parser" = "english") COMMENT 'fatherName index' ) ENGINE=OLAP DUPLICATE KEY(`name`) COMMENT 'OLAP' DISTRIBUTED BY HASH(`name`) BUCKETS 1 PROPERTIES ('replication_num' = '1'); mysql> INSERT INTO t1 VALUES ('a', ''); ``` ### Anything Else? _No response_ ### Are you willing to submit PR? - [X] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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: commits-unsubscr...@doris.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org