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

Perform incremental rollups instead of rollups at snapshot #4410

Merged
merged 17 commits into from
Jan 9, 2020
Prev Previous commit
Next Next commit
go fmt
  • Loading branch information
Paras Shah committed Dec 12, 2019
commit 109d0773898a20984d4d2619dff3673708ea7fbf
5 changes: 2 additions & 3 deletions posting/mvcc.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,15 @@ import (
"encoding/hex"
"math"
"strconv"
"sync/atomic"
"sync"
"time"
"sync/atomic"
"time"

"github.com/dgraph-io/badger/v2"
"github.com/dgraph-io/dgo/v2/protos/api"
"github.com/dgraph-io/dgraph/protos/pb"
"github.com/dgraph-io/dgraph/x"
"github.com/pkg/errors"

)

// IncRollup is used to batch keys for rollup incrementally.
Expand Down