Tihomir Dimov
10/09/2022, 11:49 AM[0]: Partition '2022-10-08.1634154936' does not exist in table 'test_table' directory.
Run [ALTER TABLE test_table DROP PARTITION LIST '2022-10-08.1634154936'] to repair the table or restore the partition directory.
If I run ALTER TABLE test_table DROP PARTITION LIST '2022-10-08.1634154936'
I get the following error:
table 'test_table' could not be altered:
[0]: Partition '2022-10-08.1634154936' does not exist in table 'test_table' directory.
Run [ALTER TABLE test_table DROP PARTITION LIST '2022-10-08.1634154936'] to repair the table
I can't find any errors in the logs.
In the table are being saved records all the time with ILP and socket.sendall()
Does any one have an idea how can I fix the table and what is the reason of the error on first place?Andrey Pechkurov
10/09/2022, 12:31 PMALTER TABLE test_table DROP PARTITION LIST '2022-10-08'
. The message is misleadingTihomir Dimov
10/09/2022, 12:47 PMAndrey Pechkurov
10/09/2022, 1:53 PMTihomir Dimov
10/10/2022, 7:49 PMALTER TABLE test_table DROP PARTITION LIST '2022-10-08'
gives the same error:
table 'test_table' could not be altered:
[0]: Partition '2022-10-08.1634154936' does not exist in table 'test_table' directory.
Run [ALTER TABLE test_table DROP PARTITION LIST '2022-10-08.1634154936'] to repair the table
DROP TABLE 'test_table'
I am getting:
Could not lock 'test_table' [reason='tcpIlp']
Andrey Pechkurov
10/10/2022, 8:09 PMTihomir Dimov
10/10/2022, 8:21 PM