-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollback.go
41 lines (34 loc) · 1.25 KB
/
rollback.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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package kvledger
import (
"github.com/hyperledger/fabric/common/ledger/util/leveldbhelper"
"github.com/hyperledger/fabric/core/ledger/ledgerconfig"
"github.com/hyperledger/fabric/core/ledger/ledgerstorage"
"github.com/pkg/errors"
)
// RollbackKVLedger rollbacks a ledger to a specified block number
func RollbackKVLedger(ledgerID string, blockNum uint64) error {
fileLock := leveldbhelper.NewFileLock(ledgerconfig.GetFileLockPath())
if err := fileLock.Lock(); err != nil {
return errors.Wrap(err, "as another peer node command is executing,"+
" wait for that command to complete its execution or terminate it before retrying")
}
defer fileLock.Unlock()
blockstorePath := ledgerconfig.GetBlockStorePath()
if err := ledgerstorage.ValidateRollbackParams(blockstorePath, ledgerID, blockNum); err != nil {
return err
}
logger.Infof("Dropping databases")
if err := dropDBs(); err != nil {
return err
}
logger.Info("Rolling back ledger store")
if err := ledgerstorage.Rollback(blockstorePath, ledgerID, blockNum); err != nil {
return err
}
logger.Infof("The channel [%s] has been successfully rolled back to the block number [%d]", ledgerID, blockNum)
return nil
}