yschengzi commented on issue #8618: URL: https://github.com/apache/iotdb/issues/8618#issuecomment-1367795067
同步工具的机制可以理解为接收端重复执行一次发送端的操作 在你的步骤中,发送端创建了存储组,接收端重复执行会创建一样的存储组 因此如果在接收端删掉对应存储组,接收端是不会再次创建的 这么做的原因: 1.如果需要发送端接收端时刻保持一致,需要时刻监控发送端接收端状态并且比对,这样对系统影响太大 2.时刻保持一致将导致无法在接收端根据需要修改接收端上的数据 如果想让发送端接收端保持一致,可以: 1.找到IOTDB_HOME/data/data目录下,删除所有sync开头的文件夹(发送端) 2.重启sync工具 -- 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]
