Skip to content

Commit

Permalink
roachtest: adapt hotspotsplits to new default range size
Browse files Browse the repository at this point in the history
660b3e7 bumped the default range size
by a factor of 8. Do the same in this test.

Addresses one failure mode of #33660.

Release note: None
  • Loading branch information
tbg committed Feb 24, 2020
1 parent e3f7bcd commit 847b2e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/roachtest/hotspotsplits.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func registerHotSpotSplits(r *testRegistry) {

m.Go(func() error {
t.Status(fmt.Sprintf("starting checks for range sizes"))
const sizeLimit = 3 * (1 << 26) // 192 MB
const sizeLimit = 3 * (1 << 29) // 3*512 MB (512 mb is default size)

db := c.Conn(ctx, 1)
defer db.Close()
Expand Down

0 comments on commit 847b2e6

Please sign in to comment.