ruvector-core 2.2.0

High-performance Rust vector database core with HNSW indexing
Documentation
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
//! Concurrent access tests with multiple threads
//!
//! These tests verify thread-safety and correct behavior under concurrent access.

use ruvector_core::types::{DbOptions, HnswConfig, SearchQuery};
use ruvector_core::{VectorDB, VectorEntry};
use std::collections::HashSet;
use std::sync::{Arc, Mutex};
use std::thread;
use tempfile::tempdir;

#[test]
fn test_concurrent_reads() {
    let dir = tempdir().unwrap();
    let mut options = DbOptions::default();
    options.storage_path = dir
        .path()
        .join("concurrent_reads.db")
        .to_string_lossy()
        .to_string();
    options.dimensions = 32;

    let db = Arc::new(VectorDB::new(options).unwrap());

    // Insert initial data
    for i in 0..100 {
        db.insert(VectorEntry {
            id: Some(format!("vec_{}", i)),
            vector: (0..32).map(|j| ((i + j) as f32) * 0.1).collect(),
            metadata: None,
        })
        .unwrap();
    }

    // Spawn multiple reader threads
    let num_threads = 10;
    let mut handles = vec![];

    for thread_id in 0..num_threads {
        let db_clone = Arc::clone(&db);

        let handle = thread::spawn(move || {
            for i in 0..50 {
                let id = format!("vec_{}", (thread_id * 10 + i) % 100);
                let result = db_clone.get(&id).unwrap();
                assert!(result.is_some(), "Failed to get {}", id);
            }
        });

        handles.push(handle);
    }

    for handle in handles {
        handle.join().unwrap();
    }
}

#[test]
fn test_concurrent_writes_no_collision() {
    let dir = tempdir().unwrap();
    let mut options = DbOptions::default();
    options.storage_path = dir
        .path()
        .join("concurrent_writes.db")
        .to_string_lossy()
        .to_string();
    options.dimensions = 32;

    let db = Arc::new(VectorDB::new(options).unwrap());

    // Spawn multiple writer threads with non-overlapping IDs
    let num_threads = 10;
    let vectors_per_thread = 20;
    let mut handles = vec![];

    for thread_id in 0..num_threads {
        let db_clone = Arc::clone(&db);

        let handle = thread::spawn(move || {
            for i in 0..vectors_per_thread {
                let id = format!("thread_{}_{}", thread_id, i);
                db_clone
                    .insert(VectorEntry {
                        id: Some(id.clone()),
                        vector: vec![thread_id as f32; 32],
                        metadata: None,
                    })
                    .unwrap();
            }
        });

        handles.push(handle);
    }

    for handle in handles {
        handle.join().unwrap();
    }

    // Verify all vectors were inserted
    assert_eq!(db.len().unwrap(), num_threads * vectors_per_thread);
}

#[test]
fn test_concurrent_delete_and_insert() {
    let dir = tempdir().unwrap();
    let mut options = DbOptions::default();
    options.storage_path = dir
        .path()
        .join("concurrent_delete_insert.db")
        .to_string_lossy()
        .to_string();
    options.dimensions = 16;

    let db = Arc::new(VectorDB::new(options).unwrap());

    // Insert initial data
    for i in 0..100 {
        db.insert(VectorEntry {
            id: Some(format!("vec_{}", i)),
            vector: vec![i as f32; 16],
            metadata: None,
        })
        .unwrap();
    }

    let num_threads = 5;
    let mut handles = vec![];

    // Deleter threads
    for thread_id in 0..num_threads {
        let db_clone = Arc::clone(&db);

        let handle = thread::spawn(move || {
            for i in 0..10 {
                let id = format!("vec_{}", thread_id * 10 + i);
                db_clone.delete(&id).unwrap();
            }
        });

        handles.push(handle);
    }

    // Inserter threads
    for thread_id in 0..num_threads {
        let db_clone = Arc::clone(&db);

        let handle = thread::spawn(move || {
            for i in 0..10 {
                let id = format!("new_{}_{}", thread_id, i);
                db_clone
                    .insert(VectorEntry {
                        id: Some(id),
                        vector: vec![(thread_id * 100 + i) as f32; 16],
                        metadata: None,
                    })
                    .unwrap();
            }
        });

        handles.push(handle);
    }

    for handle in handles {
        handle.join().unwrap();
    }

    // Verify database is in consistent state
    let final_len = db.len().unwrap();
    assert_eq!(final_len, 100); // 100 original - 50 deleted + 50 inserted
}

#[test]
fn test_concurrent_search_and_insert() {
    let dir = tempdir().unwrap();
    let mut options = DbOptions::default();
    options.storage_path = dir
        .path()
        .join("concurrent_search_insert.db")
        .to_string_lossy()
        .to_string();
    options.dimensions = 64;
    options.hnsw_config = Some(HnswConfig::default());

    let db = Arc::new(VectorDB::new(options).unwrap());

    // Insert initial data
    for i in 0..100 {
        db.insert(VectorEntry {
            id: Some(format!("vec_{}", i)),
            vector: (0..64).map(|j| ((i + j) as f32) * 0.01).collect(),
            metadata: None,
        })
        .unwrap();
    }

    let num_search_threads = 5;
    let num_insert_threads = 2;
    let mut handles = vec![];

    // Search threads
    for search_id in 0..num_search_threads {
        let db_clone = Arc::clone(&db);

        let handle = thread::spawn(move || {
            for i in 0..20 {
                let query: Vec<f32> = (0..64)
                    .map(|j| ((search_id * 10 + i + j) as f32) * 0.01)
                    .collect();
                let results = db_clone
                    .search(SearchQuery {
                        vector: query,
                        k: 5,
                        filter: None,
                        ef_search: None,
                    })
                    .unwrap();

                // Should always return some results (at least from initial data)
                assert!(results.len() > 0);
            }
        });

        handles.push(handle);
    }

    // Insert threads
    for insert_id in 0..num_insert_threads {
        let db_clone = Arc::clone(&db);

        let handle = thread::spawn(move || {
            for i in 0..50 {
                db_clone
                    .insert(VectorEntry {
                        id: Some(format!("new_{}_{}", insert_id, i)),
                        vector: (0..64)
                            .map(|j| ((insert_id * 1000 + i + j) as f32) * 0.01)
                            .collect(),
                        metadata: None,
                    })
                    .unwrap();
            }
        });

        handles.push(handle);
    }

    for handle in handles {
        handle.join().unwrap();
    }

    // Verify final state
    assert_eq!(db.len().unwrap(), 200); // 100 initial + 100 new
}

#[test]
fn test_atomicity_of_batch_insert() {
    let dir = tempdir().unwrap();
    let mut options = DbOptions::default();
    options.storage_path = dir
        .path()
        .join("atomic_batch.db")
        .to_string_lossy()
        .to_string();
    options.dimensions = 16;

    let db = Arc::new(VectorDB::new(options).unwrap());

    // Track successful insertions
    let inserted_ids = Arc::new(Mutex::new(HashSet::new()));

    let num_threads = 5;
    let mut handles = vec![];

    for thread_id in 0..num_threads {
        let db_clone = Arc::clone(&db);
        let ids_clone = Arc::clone(&inserted_ids);

        let handle = thread::spawn(move || {
            for batch_idx in 0..10 {
                let vectors: Vec<VectorEntry> = (0..10)
                    .map(|i| {
                        let id = format!("t{}_b{}_v{}", thread_id, batch_idx, i);
                        VectorEntry {
                            id: Some(id.clone()),
                            vector: vec![(thread_id * 100 + batch_idx * 10 + i) as f32; 16],
                            metadata: None,
                        }
                    })
                    .collect();

                let ids = db_clone.insert_batch(vectors).unwrap();

                let mut lock = ids_clone.lock().unwrap();
                for id in ids {
                    lock.insert(id);
                }
            }
        });

        handles.push(handle);
    }

    for handle in handles {
        handle.join().unwrap();
    }

    // Verify all insertions were recorded
    let total_inserted = inserted_ids.lock().unwrap().len();
    assert_eq!(total_inserted, num_threads * 10 * 10); // threads * batches * vectors_per_batch
    assert_eq!(db.len().unwrap(), total_inserted);
}

#[test]
fn test_read_write_consistency() {
    let dir = tempdir().unwrap();
    let mut options = DbOptions::default();
    options.storage_path = dir
        .path()
        .join("consistency.db")
        .to_string_lossy()
        .to_string();
    options.dimensions = 32;

    let db = Arc::new(VectorDB::new(options).unwrap());

    // Insert initial vector
    db.insert(VectorEntry {
        id: Some("test".to_string()),
        vector: vec![1.0; 32],
        metadata: None,
    })
    .unwrap();

    let num_threads = 10;
    let mut handles = vec![];

    for thread_id in 0..num_threads {
        let db_clone = Arc::clone(&db);

        let handle = thread::spawn(move || {
            for _ in 0..100 {
                // Read
                let entry = db_clone.get("test").unwrap();
                assert!(entry.is_some());

                // Verify vector is consistent
                let vector = entry.unwrap().vector;
                assert_eq!(vector.len(), 32);

                // All values should be the same (not corrupted)
                let first_val = vector[0];
                assert!(vector
                    .iter()
                    .all(|&v| v == first_val || (first_val == 1.0 || v == (thread_id as f32))));

                // Write (update) - this creates a race condition intentionally
                if thread_id % 2 == 0 {
                    let _ = db_clone.insert(VectorEntry {
                        id: Some("test".to_string()),
                        vector: vec![thread_id as f32; 32],
                        metadata: None,
                    });
                }
            }
        });

        handles.push(handle);
    }

    for handle in handles {
        handle.join().unwrap();
    }

    // Verify database is still consistent
    let final_entry = db.get("test").unwrap();
    assert!(final_entry.is_some());

    let vector = final_entry.unwrap().vector;
    assert_eq!(vector.len(), 32);

    // Check no corruption (all values should be the same)
    let first_val = vector[0];
    assert!(vector.iter().all(|&v| v == first_val));
}

#[test]
fn test_concurrent_metadata_updates() {
    use std::collections::HashMap;

    let dir = tempdir().unwrap();
    let mut options = DbOptions::default();
    options.storage_path = dir.path().join("metadata.db").to_string_lossy().to_string();
    options.dimensions = 16;

    let db = Arc::new(VectorDB::new(options).unwrap());

    // Insert initial vectors
    for i in 0..50 {
        db.insert(VectorEntry {
            id: Some(format!("vec_{}", i)),
            vector: vec![i as f32; 16],
            metadata: None,
        })
        .unwrap();
    }

    let num_threads = 5;
    let mut handles = vec![];

    for thread_id in 0..num_threads {
        let db_clone = Arc::clone(&db);

        let handle = thread::spawn(move || {
            for i in 0..10 {
                let mut metadata = HashMap::new();
                metadata.insert(format!("thread_{}", thread_id), serde_json::json!(i));

                // Update vector with metadata
                let id = format!("vec_{}", i * 5 + thread_id);
                db_clone
                    .insert(VectorEntry {
                        id: Some(id.clone()),
                        vector: vec![thread_id as f32; 16],
                        metadata: Some(metadata),
                    })
                    .unwrap();
            }
        });

        handles.push(handle);
    }

    for handle in handles {
        handle.join().unwrap();
    }

    // Verify some vectors have metadata
    let entry = db.get("vec_0").unwrap();
    assert!(entry.is_some());
}