ducthangbui opened a new issue, #29382: URL: https://github.com/apache/doris/issues/29382
### 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 doris-2.0.3-rc06 ### What's Wrong? I use dynamic partition with mysql CREATE TABLE source_ucm.raw_account_profile_value( id bigint, t_created_day date, t_action varchar(2), customer_id int, table_attribute_field_id int, value varchar(500), t_process_time varchar(50), ts_ms bigint, t_insert_at datetimev2 DEFAULT current_timestamp ) ENGINE=OLAP DUPLICATE KEY (id, t_created_day, t_action) PARTITION BY RANGE(t_created_day)() DISTRIBUTED BY HASH(id, t_action) BUCKETS AUTO PROPERTIES ( "replication_num" = "2", "dynamic_partition.create_history_partition"= "true", "dynamic_partition.history_partition_num" = "497", "dynamic_partition.enable" = "true", "dynamic_partition.time_unit" = "DAY", "dynamic_partition.end" = "3", "dynamic_partition.buckets" = "1", "dynamic_partition.prefix" = "p" ); Today, I receive log error no partition for this tuple when insert new data. I check partition by sql command show partitions from source_ucm.raw_account_profile_value order by PartitionName desc, I see only last year partition  ### What You Expected? I want to have new patch for this bug ### How to Reproduce? _No response_ ### 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
