Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync wait: Handle processed message offset #4253

Merged
merged 1 commit into from
Oct 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions cli/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,13 @@ func SyncWait(ctx context.Context, napi api.FullNode) error {

samples := 8
i := 0
var app, lastApp uint64
var firstApp, app, lastApp uint64

state, err := napi.SyncState(ctx)
if err != nil {
return err
}
firstApp = state.VMApplied

for {
state, err := napi.SyncState(ctx)
Expand Down Expand Up @@ -286,10 +292,10 @@ func SyncWait(ctx context.Context, napi api.FullNode) error {

if i%samples == 0 {
lastApp = app
app = state.VMApplied
app = state.VMApplied - firstApp
}
if i > 0 {
fmt.Printf("Validated %d messages (%d per second)\n", state.VMApplied, (app-lastApp)*uint64(time.Second/tick)/uint64(samples))
fmt.Printf("Validated %d messages (%d per second)\n", state.VMApplied-firstApp, (app-lastApp)*uint64(time.Second/tick)/uint64(samples))
lastLines++
}

Expand Down