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
Merge remote-tracking branch 'origin/master' into ps_incremental_rollups
  • Loading branch information
Paras Shah committed Dec 12, 2019
commit d5eb7a473a7e1eb6feb11bd930d8c695a50955d6
15 changes: 8 additions & 7 deletions posting/mvcc.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,18 @@ import (
"crypto/sha1"
martinmr marked this conversation as resolved.
Show resolved Hide resolved
"encoding/binary"
"encoding/hex"
"github.com/dgraph-io/badger"
bpb "github.com/dgraph-io/badger/pb"
"math"
"strconv"
"sync/atomic"
"sync"
"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"
"math"
"strconv"
"sync"
"sync/atomic"
"time"

)

// IncRollup is used to batch keys for rollup incrementally.
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.