-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
643 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package journal | ||
|
||
import ( | ||
"github.com/filecoin-project/specs-actors/actors/abi" | ||
|
||
"github.com/filecoin-project/lotus/chain/types" | ||
) | ||
|
||
type HeadChangeEvt struct { | ||
From types.TipSetKey `json:"from"` | ||
FromHeight abi.ChainEpoch `json:"from_height"` | ||
To types.TipSetKey `json:"to"` | ||
ToHeight abi.ChainEpoch `json:"to_height"` | ||
RevertCount int `json:"rev_cnt"` | ||
ApplyCount int `json:"apply_cnt"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
package journal | ||
|
||
import ( | ||
"context" | ||
"encoding/json" | ||
"fmt" | ||
"os" | ||
"path/filepath" | ||
"sync" | ||
"time" | ||
|
||
logging "github.com/ipfs/go-log" | ||
"go.uber.org/fx" | ||
"golang.org/x/xerrors" | ||
|
||
"github.com/filecoin-project/lotus/build" | ||
"github.com/filecoin-project/lotus/node/repo" | ||
) | ||
|
||
var log = logging.Logger("journal") | ||
|
||
// fsJournal is a basic journal backed by files on a filesystem. | ||
type fsJournal struct { | ||
disabledTracker | ||
|
||
dir string | ||
sizeLimit int64 | ||
|
||
lk sync.Mutex | ||
fi *os.File | ||
fSize int64 | ||
|
||
incoming chan *Entry | ||
|
||
closing chan struct{} | ||
} | ||
|
||
// OpenFSJournal constructs a rolling filesystem journal, with a default | ||
// per-file size limit of 1GiB. | ||
func OpenFSJournal(lr repo.LockedRepo, lc fx.Lifecycle, disabled []EventType) (Journal, error) { | ||
dir := filepath.Join(lr.Path(), "journal") | ||
if err := os.MkdirAll(dir, 0755); err != nil { | ||
return nil, fmt.Errorf("failed to mk directory %s for file journal: %w", dir, err) | ||
} | ||
|
||
f := &fsJournal{ | ||
disabledTracker: newDisabledTracker(disabled), | ||
dir: dir, | ||
sizeLimit: 1 << 30, | ||
incoming: make(chan *Entry, 32), | ||
closing: make(chan struct{}), | ||
} | ||
|
||
if err := f.rollJournalFile(); err != nil { | ||
return nil, err | ||
} | ||
|
||
lc.Append(fx.Hook{ | ||
OnStop: func(_ context.Context) error { return f.Close() }, | ||
}) | ||
|
||
go f.runLoop() | ||
|
||
return f, nil | ||
} | ||
|
||
func (f *fsJournal) AddEntry(evtType EventType, obj interface{}) { | ||
je := &Entry{ | ||
EventType: evtType, | ||
Timestamp: build.Clock.Now(), | ||
Data: obj, | ||
} | ||
select { | ||
case f.incoming <- je: | ||
case <-f.closing: | ||
log.Warnw("journal closed but tried to log event", "entry", je) | ||
} | ||
} | ||
|
||
func (f *fsJournal) Close() error { | ||
close(f.closing) | ||
return nil | ||
} | ||
|
||
func (f *fsJournal) putEntry(je *Entry) error { | ||
b, err := json.Marshal(je) | ||
if err != nil { | ||
return err | ||
} | ||
n, err := f.fi.Write(append(b, '\n')) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
f.fSize += int64(n) | ||
|
||
if f.fSize >= f.sizeLimit { | ||
_ = f.rollJournalFile() | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func (f *fsJournal) rollJournalFile() error { | ||
if f.fi != nil { | ||
_ = f.fi.Close() | ||
} | ||
|
||
nfi, err := os.Create(filepath.Join(f.dir, fmt.Sprintf("lotus-journal-%s.ndjson", build.Clock.Now().Format(time.RFC3339)))) | ||
if err != nil { | ||
return xerrors.Errorf("failed to open journal file: %w", err) | ||
} | ||
|
||
f.fi = nfi | ||
f.fSize = 0 | ||
return nil | ||
} | ||
|
||
func (f *fsJournal) runLoop() { | ||
for { | ||
select { | ||
case je := <-f.incoming: | ||
if err := f.putEntry(je); err != nil { | ||
log.Errorw("failed to write out journal entry", "entry", je, "err", err) | ||
} | ||
case <-f.closing: | ||
_ = f.fi.Close() | ||
return | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.