-
Hello everyone and thank you for your support, we always get an error during the restore. But I'm not sure if this leads to a problem, because otherwise everything works. There is also no error in the system.errors table. Short test scenario:
Current configuration:
How do I work around/fix this error? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
error message means another replica is present and insertion in another replica continues
when you delete database in one replica use during restore you need restore schema on each replica in each shard |
Beta Was this translation helpful? Give feedback.
error message means another replica is present and insertion in another replica continues
to avoid data duplication we can't restore
when you delete database in one replica
it stay on other replicas
use
DROP DATABASE dbname ON CLUSTER 'cluster-name' SYNC
and look to https://github.com/Altinity/clickhouse-backup/blob/master/Examples.md#restore
during restore you need restore schema on each replica in each shard
and restore data only on one replica in each shard