IoTDB can't delete after automatically creating time series through Session

Problem Description

Session's insertRecords interface and insertTablet and other write interfaces do not check the format of the sequence. If there are some sequences that do not conform to the naming convention, they will be automatically created.

These sequences cannot be deleted through Cli, because Cli still uses the SQL interface and it is not allowed to write sequence paths that do not conform to the specification.
Insert picture description here

solution

Use Session's deleteTimeseries interface to delete, and this interface does not do SQL parsing to fight poison with poison.

Guess you like

Origin blog.csdn.net/qiaojialin/article/details/108133861