We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae54cee commit aaa3410Copy full SHA for aaa3410
pkg/kv/kvserver/replica_raftstorage.go
@@ -44,9 +44,10 @@ var snapshotIngestAsWriteThreshold = settings.RegisterByteSizeSetting(
44
"size below which a range snapshot ingestion will be performed as a normal write",
45
metamorphic.ConstantWithTestChoice[int64](
46
"kv.snapshot.ingest_as_write_threshold",
47
- 100<<10, /* default value is 100KiB */
48
- 1<<30, /* 1GiB causes everything to be a normal write */
49
- 0 /* 0B causes everything to be an ingest */),
+ 100<<10, // default value is 100KiB
+ 1<<30, // 1GiB causes everything to be a normal write
+ 0, // 0B causes everything to be an ingest
50
+ ),
51
)
52
53
// replicaRaftStorage implements the raft.Storage interface.
0 commit comments