Operation Doris database error records - insert has filtered data in strict mode

mistake

When writing to the Doris database, it has been unable to write in, and an error is reported: insert has filtered data in strict mode, translation: insert has filtered data in strict mode

problem lies in

When creating a table, the length of a column is too short

The data of type VARCHAR(10) was used before, but now it is changed to VARCHAR(64)

can be inserted after modification

question extension

The same error, different reasons, this time it still happened when inserting data

reason

When I created the table, I partitioned the data by time and did not do dynamic partitioning, so I would report an error when inserting a time that is not specified by the partition.

Solution

Continue to add partitions to the table manually. If you don’t want to bother, study how to do dynamic partitioning.

Guess you like

Origin blog.csdn.net/weixin_54243306/article/details/130832241