Skip to content

Commit 038e8c7

Browse files
committed
roachtest/vecindex: deflake vecindex test
There's some nondeterminism in the recall rates of a vector index, and it looks like I set the fail threshold for these tests a bit too high. Fixes: #156787 Release note: None
1 parent 02c7429 commit 038e8c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/cmd/roachtest/tests/vecindex.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func registerVectorIndex(r registry.Registry) {
168168
backfillPct: 60,
169169
preBatchSz: 100,
170170
beamSizes: []int{8, 16, 32, 64, 128},
171-
minRecall: []float64{0.76, 0.83, 0.88, 0.92, 0.94},
171+
minRecall: []float64{0.72, 0.83, 0.88, 0.92, 0.94},
172172
rwSplit: .9,
173173
},
174174
// Local - no prefix
@@ -210,7 +210,7 @@ func registerVectorIndex(r registry.Registry) {
210210
backfillPct: 60,
211211
preBatchSz: 100,
212212
beamSizes: []int{8, 16, 32, 64, 128},
213-
minRecall: []float64{0.76, 0.83, 0.88, 0.92, 0.94},
213+
minRecall: []float64{0.72, 0.83, 0.88, 0.92, 0.94},
214214
rwSplit: .9,
215215
},
216216
// Local - with prefix

0 commit comments

Comments
 (0)