Files
qdrant/lib/segment/benches/conditional_search.rs
dependabot[bot] 18a7587d4b build(deps): bump rand_distr from 0.5.1 to 0.6.0 (#8148)
* build(deps): bump rand_distr from 0.5.1 to 0.6.0

Bumps [rand_distr](https://github.com/rust-random/rand_distr) from 0.5.1 to 0.6.0.
- [Release notes](https://github.com/rust-random/rand_distr/releases)
- [Changelog](https://github.com/rust-random/rand_distr/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-random/rand_distr/compare/0.5.1...0.6.0)

---
updated-dependencies:
- dependency-name: rand_distr
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Migrate main code base to rand 0.10

* Migrate tests

* Migrate benches

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: timvisee <tim@visee.me>
2026-02-25 14:15:04 +01:00

221 lines
6.9 KiB
Rust

#[cfg(not(target_os = "windows"))]
mod prof;
use std::sync::atomic::AtomicBool;
use common::counter::hardware_counter::HardwareCounterCell;
use common::types::PointOffsetType;
use criterion::{Criterion, criterion_group, criterion_main};
use itertools::Itertools;
use rand::rngs::StdRng;
use rand::{RngExt, SeedableRng};
use segment::fixtures::payload_context_fixture::{
create_plain_payload_index, create_struct_payload_index,
};
use segment::fixtures::payload_fixtures::{random_match_any_filter, random_must_filter};
use segment::index::PayloadIndex;
use tempfile::Builder;
const NUM_POINTS: usize = 100000;
const CHECK_SAMPLE_SIZE: usize = 1000;
fn conditional_plain_search_benchmark(c: &mut Criterion) {
let seed = 42;
let mut rng = StdRng::seed_from_u64(seed);
let mut group = c.benchmark_group("conditional-search-group");
let dir = Builder::new().prefix("storage_dir").tempdir().unwrap();
let plain_index = create_plain_payload_index(dir.path(), NUM_POINTS, seed);
let hw_counter = HardwareCounterCell::new();
let is_stopped = AtomicBool::new(false);
let mut result_size = 0;
let mut query_count = 0;
group.bench_function("conditional-search-query-points", |b| {
b.iter(|| {
let filter = random_must_filter(&mut rng, 2);
result_size += plain_index
.query_points(&filter, &hw_counter, &is_stopped)
.len();
query_count += 1;
})
});
if query_count != 0 {
eprintln!(
"result_size / query_count = {:#?}",
result_size / query_count
);
}
let mut result_size = 0;
let mut query_count = 0;
// Same benchmark, but with larger expected result
group.bench_function("conditional-search-query-points-large", |b| {
b.iter(|| {
let filter = random_must_filter(&mut rng, 1);
result_size += plain_index
.query_points(&filter, &hw_counter, &is_stopped)
.len();
query_count += 1;
})
});
if query_count != 0 {
eprintln!(
"result_size / query_count = {:#?}",
result_size / query_count
);
}
let mut result_size = 0;
let mut query_count = 0;
group.bench_function("conditional-search-context-check", |b| {
b.iter(|| {
let filter = random_must_filter(&mut rng, 2);
let sample = (0..CHECK_SAMPLE_SIZE)
.map(|_| rng.random_range(0..NUM_POINTS) as PointOffsetType)
.collect_vec();
let context = plain_index.filter_context(&filter, &hw_counter);
let filtered_sample = sample
.into_iter()
.filter(|id| context.check(*id))
.collect_vec();
result_size += filtered_sample.len();
query_count += 1;
})
});
if query_count != 0 {
eprintln!(
"result_size / query_count = {:#?}",
result_size / query_count
);
}
let mut result_size = 0;
let mut query_count = 0;
group.bench_function("conditional-search-match-any", |b| {
let filter = random_match_any_filter(&mut rng, 2, 51.0);
b.iter(|| {
let sample = (0..CHECK_SAMPLE_SIZE)
.map(|_| rng.random_range(0..NUM_POINTS) as PointOffsetType)
.collect_vec();
let context = plain_index.filter_context(&filter, &hw_counter);
let filtered_sample = sample
.into_iter()
.filter(|id| context.check(*id))
.collect_vec();
result_size += filtered_sample.len();
query_count += 1;
});
});
group.bench_function("conditional-search-large-match-any", |b| {
let filter = random_match_any_filter(&mut rng, 1000, 15.0);
b.iter(|| {
let sample = (0..CHECK_SAMPLE_SIZE)
.map(|_| rng.random_range(0..NUM_POINTS) as PointOffsetType)
.collect_vec();
let context = plain_index.filter_context(&filter, &hw_counter);
let filtered_sample = sample
.into_iter()
.filter(|id| context.check(*id))
.collect_vec();
result_size += filtered_sample.len();
query_count += 1;
});
});
group.finish();
}
fn conditional_struct_search_benchmark(c: &mut Criterion) {
let mut rng = StdRng::seed_from_u64(42);
let mut group = c.benchmark_group("conditional-search-group");
let seed = 42;
let hw_counter = HardwareCounterCell::new();
let is_stopped = AtomicBool::new(false);
let dir = Builder::new().prefix("storage_dir").tempdir().unwrap();
let struct_index = create_struct_payload_index(dir.path(), NUM_POINTS, seed);
let mut result_size = 0;
let mut query_count = 0;
let filter = random_must_filter(&mut rng, 2);
let cardinality = struct_index.estimate_cardinality(&filter, &hw_counter);
let indexed_fields = struct_index.indexed_fields();
eprintln!("cardinality = {cardinality:#?}");
eprintln!("indexed_fields = {indexed_fields:#?}");
group.bench_function("struct-conditional-search-query-points", |b| {
b.iter(|| {
let filter = random_must_filter(&mut rng, 2);
result_size += struct_index
.query_points(&filter, &hw_counter, &is_stopped)
.len();
query_count += 1;
})
});
if query_count != 0 {
eprintln!(
"result_size / query_count = {:#?}",
result_size / query_count
);
}
let mut result_size = 0;
let mut query_count = 0;
group.bench_function("struct-conditional-search-context-check", |b| {
b.iter(|| {
let filter = random_must_filter(&mut rng, 2);
let sample = (0..CHECK_SAMPLE_SIZE)
.map(|_| rng.random_range(0..NUM_POINTS) as PointOffsetType)
.collect_vec();
let context = struct_index.filter_context(&filter, &hw_counter);
let filtered_sample = sample
.into_iter()
.filter(|id| context.check(*id))
.collect_vec();
result_size += filtered_sample.len();
query_count += 1;
})
});
if query_count != 0 {
eprintln!(
"result_size / query_count = {:#?}",
result_size / query_count
);
}
group.finish();
}
#[cfg(not(target_os = "windows"))]
criterion_group! {
name = benches;
config = Criterion::default().with_profiler(prof::FlamegraphProfiler::new(100));
targets = conditional_struct_search_benchmark, conditional_plain_search_benchmark
}
#[cfg(target_os = "windows")]
criterion_group! {
name = benches;
config = Criterion::default();
targets = conditional_struct_search_benchmark, conditional_plain_search_benchmark
}
criterion_main!(benches);