代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package kvledger
import (
"os"
"github.com/pkg/errors"
)
func dropDBs(rootFSPath string) error {
// During block commits to stateDB, the transaction manager updates the bookkeeperDB and one of the
// state listener updates the config historyDB. As we drop the stateDB, we need to drop the
// configHistoryDB and bookkeeperDB too so that during the peer startup after the reset/rollback,
// we can get a correct configHistoryDB.
// Note that it is necessary to drop the stateDB first before dropping the config history and
// bookkeeper. Suppose if the config or bookkeeper is dropped first and the peer reset/rollback
// command fails before dropping the stateDB, peer cannot start with consistent data (if the
// user decides to start the peer without retrying the reset/rollback) as the stateDB would
// not be rebuilt.
if err := dropStateLevelDB(rootFSPath); err != nil {
return err
}
if err := dropConfigHistoryDB(rootFSPath); err != nil {
return err
}
if err := dropBookkeeperDB(rootFSPath); err != nil {
return err
}
if err := dropHistoryDB(rootFSPath); err != nil {
return err
}
return nil
}
func dropStateLevelDB(rootFSPath string) error {
stateLeveldbPath := StateDBPath(rootFSPath)
logger.Infof("Dropping StateLevelDB at location [%s] ...if present", stateLeveldbPath)
return os.RemoveAll(stateLeveldbPath)
}
func dropConfigHistoryDB(rootFSPath string) error {
configHistoryDBPath := ConfigHistoryDBPath(rootFSPath)
logger.Infof("Dropping ConfigHistoryDB at location [%s]", configHistoryDBPath)
err := os.RemoveAll(configHistoryDBPath)
return errors.Wrapf(err, "error removing the ConfigHistoryDB located at %s", configHistoryDBPath)
}
func dropBookkeeperDB(rootFSPath string) error {
bookkeeperDBPath := BookkeeperDBPath(rootFSPath)
logger.Infof("Dropping BookkeeperDB at location [%s]", bookkeeperDBPath)
err := os.RemoveAll(bookkeeperDBPath)
return errors.Wrapf(err, "error removing the BookkeeperDB located at %s", bookkeeperDBPath)
}
func dropHistoryDB(rootFSPath string) error {
historyDBPath := HistoryDBPath(rootFSPath)
logger.Infof("Dropping HistoryDB at location [%s] ...if present", historyDBPath)
return os.RemoveAll(historyDBPath)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。