-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrop_dbs.go
68 lines (58 loc) · 2.36 KB
/
drop_dbs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package kvledger
import (
"os"
"github.com/hyperledger/fabric/core/ledger/ledgerconfig"
"github.com/pkg/errors"
)
func dropDBs() 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(); err != nil {
return err
}
if err := dropConfigHistoryDB(); err != nil {
return err
}
if err := dropBookkeeperDB(); err != nil {
return err
}
if err := dropHistoryDB(); err != nil {
return err
}
return nil
}
func dropStateLevelDB() error {
stateLeveldbPath := ledgerconfig.GetStateLevelDBPath()
logger.Infof("Dropping StateLevelDB at location [%s]", stateLeveldbPath)
err := os.RemoveAll(stateLeveldbPath)
return errors.Wrapf(err, "error removing the StateLevelDB located at %s", stateLeveldbPath)
}
func dropConfigHistoryDB() error {
configHistoryDBPath := ledgerconfig.GetConfigHistoryPath()
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() error {
bookkeeperDBPath := ledgerconfig.GetInternalBookkeeperPath()
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() error {
histroryDBPath := ledgerconfig.GetHistoryLevelDBPath()
logger.Infof("Dropping HistoryDB at location [%s]", histroryDBPath)
err := os.RemoveAll(histroryDBPath)
return errors.Wrapf(err, "error removing the HistoryDB located at %s", histroryDBPath)
}