lotus/blockstore/splitstore/debug.go

252 lines
5.1 KiB
Go
Raw Normal View History

2021-06-21 12:17:00 +00:00
package splitstore
import (
2021-06-22 07:10:24 +00:00
"fmt"
"os"
"os/exec"
"path/filepath"
"runtime/debug"
"sync"
"time"
"go.uber.org/multierr"
"golang.org/x/xerrors"
2021-06-21 12:17:00 +00:00
"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/lotus/chain/types"
blocks "github.com/ipfs/go-block-format"
cid "github.com/ipfs/go-cid"
)
type debugLog struct {
2021-06-22 07:10:24 +00:00
basePath string
readPath, writePath, movePath string
readMx, writeMx, moveMx sync.Mutex
readLog, writeLog, moveLog *os.File
readCnt, writeCnt, moveCnt int
2021-06-21 12:17:00 +00:00
}
2021-06-22 07:10:24 +00:00
func openDebugLog(path string) (*debugLog, error) {
basePath := filepath.Join(path, "debug")
err := os.MkdirAll(basePath, 0755)
if err != nil {
return nil, xerrors.Errorf("error creating debug log directory: %w", err)
}
readPath := filepath.Join(basePath, "read.log")
readFile, err := os.OpenFile(readPath, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0644)
if err != nil {
return nil, xerrors.Errorf("error opening read log: %w", err)
}
writePath := filepath.Join(basePath, "write.log")
writeFile, err := os.OpenFile(writePath, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0644)
if err != nil {
_ = readFile.Close()
return nil, xerrors.Errorf("error opening write log: %w", err)
}
movePath := filepath.Join(basePath, "move.log")
moveFile, err := os.OpenFile(movePath, os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0644)
if err != nil {
_ = readFile.Close()
_ = writeFile.Close()
return nil, xerrors.Errorf("error opening move log: %w", err)
}
return &debugLog{
basePath: basePath,
readPath: readPath,
writePath: writePath,
movePath: movePath,
readLog: readFile,
writeLog: writeFile,
moveLog: moveFile,
}, nil
}
func (d *debugLog) LogReadMiss(curTs *types.TipSet, cid cid.Cid) {
2021-06-21 12:17:00 +00:00
if d == nil {
return
}
2021-06-22 07:10:24 +00:00
stack := debug.Stack()
var epoch abi.ChainEpoch
if curTs != nil {
epoch = curTs.Height()
}
d.readMx.Lock()
defer d.readMx.Unlock()
d.readCnt++
_, err := fmt.Fprintf(d.readLog, "%d %s\n%s\n", epoch, cid, string(stack))
if err != nil {
log.Warnf("error writing read log: %s", err)
}
2021-06-21 12:17:00 +00:00
}
func (d *debugLog) LogWrite(curTs *types.TipSet, blk blocks.Block, writeEpoch abi.ChainEpoch) {
if d == nil {
return
}
2021-06-22 07:10:24 +00:00
d.writeMx.Lock()
defer d.writeMx.Unlock()
d.writeCnt++
_, err := fmt.Fprintf(d.writeLog, "%d %s %d\n", curTs.Height(), blk.Cid(), writeEpoch)
if err != nil {
log.Warnf("error writing write log: %s", err)
}
2021-06-21 12:17:00 +00:00
}
func (d *debugLog) LogWriteMany(curTs *types.TipSet, blks []blocks.Block, writeEpoch abi.ChainEpoch) {
if d == nil {
return
}
2021-06-22 07:10:24 +00:00
d.writeMx.Lock()
defer d.writeMx.Unlock()
d.writeCnt += len(blks)
for _, blk := range blks {
_, err := fmt.Fprintf(d.writeLog, "%d %s %d\n", curTs.Height(), blk.Cid(), writeEpoch)
if err != nil {
log.Warnf("error writing write log: %s", err)
break
}
}
2021-06-21 12:17:00 +00:00
}
func (d *debugLog) LogMove(curTs *types.TipSet, cid cid.Cid, writeEpoch abi.ChainEpoch) {
if d == nil {
return
}
2021-06-22 07:10:24 +00:00
d.moveMx.Lock()
defer d.moveMx.Unlock()
d.moveCnt++
_, err := fmt.Fprintf(d.moveLog, "%d %s %d\n", curTs.Height(), cid, writeEpoch)
if err != nil {
log.Warnf("error writing move log: %s", err)
}
2021-06-21 12:17:00 +00:00
}
2021-06-22 07:10:24 +00:00
func (d *debugLog) Flush() {
if d == nil {
return
}
2021-06-22 07:10:24 +00:00
// rotate non-empty logs
d.rotateReadLog()
d.rotateWriteLog()
d.rotateMoveLog()
}
func (d *debugLog) rotateReadLog() {
d.readMx.Lock()
defer d.readMx.Unlock()
if d.readCnt == 0 {
return
}
err := d.rotate(d.readLog, d.readPath)
if err != nil {
log.Errorf("error rotating read log: %s", err)
}
d.readLog, err = os.OpenFile(d.readPath, os.O_WRONLY|os.O_CREATE, 0644)
if err != nil {
log.Errorf("error opening log file: %s", err)
}
}
func (d *debugLog) rotateWriteLog() {
d.writeMx.Lock()
defer d.writeMx.Unlock()
if d.writeCnt == 0 {
return
}
err := d.rotate(d.writeLog, d.writePath)
if err != nil {
log.Errorf("error rotating read log: %s", err)
}
d.writeLog, err = os.OpenFile(d.writePath, os.O_WRONLY|os.O_CREATE, 0644)
if err != nil {
log.Errorf("error opening log file: %s", err)
}
}
func (d *debugLog) rotateMoveLog() {
d.moveMx.Lock()
defer d.moveMx.Unlock()
if d.moveCnt == 0 {
return
}
err := d.rotate(d.moveLog, d.movePath)
if err != nil {
log.Errorf("error rotating read log: %s", err)
}
d.moveLog, err = os.OpenFile(d.movePath, os.O_WRONLY|os.O_CREATE, 0644)
if err != nil {
log.Errorf("error opening log file: %s", err)
}
}
func (d *debugLog) rotate(f *os.File, path string) error {
err := f.Close()
if err != nil {
return xerrors.Errorf("error closing file: %w", err)
}
arxivPath := fmt.Sprintf("%s-%d", path, time.Now().Unix())
err = os.Rename(path, arxivPath)
if err != nil {
return xerrors.Errorf("error moving file: %w", err)
}
go func() {
cmd := exec.Command("gzip", arxivPath)
err := cmd.Run()
if err != nil {
log.Errorf("error compressing log: %s", err)
}
}()
return nil
}
2021-06-21 12:17:00 +00:00
func (d *debugLog) Close() error {
if d == nil {
return nil
}
2021-06-22 07:10:24 +00:00
d.readMx.Lock()
err1 := d.readLog.Close()
d.readMx.Unlock()
d.writeMx.Lock()
err2 := d.writeLog.Close()
d.writeMx.Unlock()
d.moveMx.Lock()
err3 := d.moveLog.Close()
d.moveMx.Unlock()
return multierr.Combine(err1, err2, err3)
2021-06-21 12:17:00 +00:00
}