-
Notifications
You must be signed in to change notification settings - Fork 0
/
query.go
238 lines (207 loc) · 6.34 KB
/
query.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package chromem
import (
"container/heap"
"context"
"fmt"
"runtime"
slices "golang.org/x/exp/slices"
"strings"
"sync"
)
var supportedFilters = []string{"$contains", "$not_contains"}
type docSim struct {
docID string
similarity float32
}
// docMaxHeap is a max-heap of docSims, based on similarity.
// See https://pkg.go.dev/container/heap@go1.22#example-package-IntHeap
type docMaxHeap []docSim
func (h docMaxHeap) Len() int { return len(h) }
func (h docMaxHeap) Less(i, j int) bool { return h[i].similarity < h[j].similarity }
func (h docMaxHeap) Swap(i, j int) { h[i], h[j] = h[j], h[i] }
func (h *docMaxHeap) Push(x any) {
// Push and Pop use pointer receivers because they modify the slice's length,
// not just its contents.
*h = append(*h, x.(docSim))
}
func (h *docMaxHeap) Pop() any {
old := *h
n := len(old)
x := old[n-1]
*h = old[0 : n-1]
return x
}
// maxDocSims manages a max-heap of docSims with a fixed size, keeping the n highest
// similarities. It's safe for concurrent use, but not the result of values().
// In our benchmarks this was faster than sorting a slice of docSims at the end.
type maxDocSims struct {
h docMaxHeap
lock sync.RWMutex
size int
}
// newMaxDocSims creates a new nMaxDocs with a fixed size.
func newMaxDocSims(size int) *maxDocSims {
return &maxDocSims{
h: make(docMaxHeap, 0, size),
size: size,
}
}
// add inserts a new docSim into the heap, keeping only the top n similarities.
func (mds *maxDocSims) add(doc docSim) {
mds.lock.Lock()
defer mds.lock.Unlock()
if mds.h.Len() < mds.size {
heap.Push(&mds.h, doc)
} else if mds.h.Len() > 0 && mds.h[0].similarity < doc.similarity {
// Replace the smallest similarity if the new doc's similarity is higher
heap.Pop(&mds.h)
heap.Push(&mds.h, doc)
}
}
// values returns the docSims in the heap, sorted by similarity (descending).
// The call itself is safe for concurrent use with add(), but the result isn't.
// Only work with the result after all calls to add() have finished.
func (d *maxDocSims) values() []docSim {
d.lock.RLock()
defer d.lock.RUnlock()
slices.SortFunc(d.h, func(i, j docSim) int {
//降序
if i.similarity < j.similarity {
return 1
} else if i.similarity > j.similarity {
return -1
}
return 0
})
return d.h
}
// filterDocs filters a map of documents by metadata and content.
// It does this concurrently.
func filterDocs(docs map[string]*Document, where, whereDocument map[string]string) []*Document {
filteredDocs := make([]*Document, 0, len(docs))
filteredDocsLock := sync.Mutex{}
// Determine concurrency. Use number of docs or CPUs, whichever is smaller.
numCPUs := runtime.NumCPU()
numDocs := len(docs)
concurrency := numCPUs
if numDocs < numCPUs {
concurrency = numDocs
}
docChan := make(chan *Document, concurrency*2)
wg := sync.WaitGroup{}
for i := 0; i < concurrency; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for doc := range docChan {
if documentMatchesFilters(doc, where, whereDocument) {
filteredDocsLock.Lock()
filteredDocs = append(filteredDocs, doc)
filteredDocsLock.Unlock()
}
}
}()
}
for _, doc := range docs {
docChan <- doc
}
close(docChan)
wg.Wait()
// With filteredDocs being initialized as potentially large slice, let's return
// nil instead of the empty slice.
if len(filteredDocs) == 0 {
filteredDocs = nil
}
return filteredDocs
}
// documentMatchesFilters checks if a document matches the given filters.
// When calling this function, the whereDocument keys must already be validated!
func documentMatchesFilters(document *Document, where, whereDocument map[string]string) bool {
// A document's metadata must have *all* the fields in the where clause.
for k, v := range where {
// TODO: Do we want to check for existence of the key? I.e. should
// a where clause with empty string as value match a document's
// metadata that doesn't have the key at all?
if document.Metadata[k] != v {
return false
}
}
// A document must satisfy *all* filters, until we support the `$or` operator.
for k, v := range whereDocument {
switch k {
case "$contains":
if !strings.Contains(document.Content, v) {
return false
}
case "$not_contains":
if strings.Contains(document.Content, v) {
return false
}
default:
// No handling (error) required because we already validated the
// operators. This simplifies the concurrency logic (no err var
// and lock, no context to cancel).
}
}
return true
}
func getMostSimilarDocs(ctx context.Context, queryVectors []float32, docs []*Document, n int) ([]docSim, error) {
nMaxDocs := newMaxDocSims(n)
// Determine concurrency. Use number of docs or CPUs, whichever is smaller.
numCPUs := runtime.NumCPU()
numDocs := len(docs)
concurrency := numCPUs
if numDocs < numCPUs {
concurrency = numDocs
}
var sharedErr error
sharedErrLock := sync.Mutex{}
ctx, cancel := context.WithCancel(ctx)
defer cancel()
setSharedErr := func(err error) {
sharedErrLock.Lock()
defer sharedErrLock.Unlock()
// Another goroutine might have already set the error.
if sharedErr == nil {
sharedErr = err
// Cancel the operation for all other goroutines.
cancel()
}
}
wg := sync.WaitGroup{}
// Instead of using a channel to pass documents into the goroutines, we just
// split the slice into sub-slices and pass those to the goroutines.
// This turned out to be faster in the query benchmarks.
subSliceSize := len(docs) / concurrency // Can leave remainder, e.g. 10/3 = 3; leaves 1
rem := len(docs) % concurrency
for i := 0; i < concurrency; i++ {
start := i * subSliceSize
end := start + subSliceSize
// Add remainder to last goroutine
if i == concurrency-1 {
end += rem
}
wg.Add(1)
go func(subSlice []*Document) {
defer wg.Done()
for _, doc := range subSlice {
// Stop work if another goroutine encountered an error.
if ctx.Err() != nil {
return
}
// As the vectors are normalized, the dot product is the cosine similarity.
sim, err := dotProduct(queryVectors, doc.Embedding)
if err != nil {
setSharedErr(fmt.Errorf("couldn't calculate similarity for document '%s': %w", doc.ID, err))
return
}
nMaxDocs.add(docSim{docID: doc.ID, similarity: sim})
}
}(docs[start:end])
}
wg.Wait()
if sharedErr != nil {
return nil, sharedErr
}
return nMaxDocs.values(), nil
}