Spaces:
Build error
Build error
File size: 6,955 Bytes
84d2a97 |
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 |
use collection::collection::Collection;
use collection::lookup::types::PseudoId;
use collection::lookup::{lookup_ids, WithLookup};
use collection::operations::consistency_params::ReadConsistency;
use collection::operations::point_ops::{
BatchPersisted, BatchVectorStructPersisted, PointInsertOperationsInternal, PointOperations,
WriteOrdering,
};
use collection::operations::shard_selector_internal::ShardSelectorInternal;
use collection::shards::shard::ShardId;
use itertools::Itertools;
use rand::rngs::SmallRng;
use rand::{self, Rng, SeedableRng};
use rstest::*;
use segment::data_types::vectors::VectorStructInternal;
use segment::types::{Payload, PointIdType};
use serde_json::json;
use tempfile::Builder;
use tokio::sync::RwLock;
use uuid::Uuid;
use crate::common::simple_collection_fixture;
const SEED: u64 = 42;
struct Resources {
request: WithLookup,
collection: RwLock<Collection>,
read_consistency: Option<ReadConsistency>,
shard_selection: Option<ShardId>,
}
async fn setup() -> Resources {
let request = WithLookup {
collection_name: "test".to_string(),
with_payload: None,
with_vectors: None,
};
let collection_dir = Builder::new().prefix("storage").tempdir().unwrap();
let collection = simple_collection_fixture(collection_dir.path(), 1).await;
let int_ids = (0..1000).map(PointIdType::from);
let mut rng = SmallRng::seed_from_u64(SEED);
let uuids = (0..1000).map(|_| PointIdType::Uuid(Uuid::from_u128(rng.gen())));
let ids = int_ids.chain(uuids).collect_vec();
let mut rng = SmallRng::seed_from_u64(SEED);
let vectors = (0..2000)
.map(|_| rng.gen::<[f32; 4]>().to_vec())
.collect_vec();
let payloads = ids
.iter()
.map(|i| Some(Payload::from(json!({ "foo": format!("bar {}", i) }))))
.collect_vec();
let batch = BatchPersisted {
ids,
vectors: BatchVectorStructPersisted::Single(vectors),
payloads: Some(payloads),
};
let upsert_points = collection::operations::CollectionUpdateOperations::PointOperation(
PointOperations::UpsertPoints(PointInsertOperationsInternal::from(batch)),
);
collection
.update_from_client_simple(upsert_points, true, WriteOrdering::default())
.await
.unwrap();
let read_consistency = None;
let shard_selection = None;
Resources {
request,
collection: RwLock::new(collection),
read_consistency,
shard_selection,
}
}
#[tokio::test(flavor = "multi_thread")]
async fn happy_lookup_ids() {
let Resources {
mut request,
collection,
read_consistency,
shard_selection,
} = setup().await;
let collection = collection.read().await;
let collection_by_name = |_: String| async { Some(collection) };
let n = 100u64;
let ints = (0..n).map_into();
let mut rng = SmallRng::seed_from_u64(SEED);
let uuids = (0..n)
.map(|_| Uuid::from_u128(rng.gen()).to_string())
.map_into();
let values = ints.chain(uuids).collect_vec();
request.with_payload = Some(true.into());
request.with_vectors = Some(true.into());
let shard_selection = match shard_selection {
Some(shard_id) => ShardSelectorInternal::ShardId(shard_id),
None => ShardSelectorInternal::All,
};
let result = lookup_ids(
request.clone(),
values.clone(),
collection_by_name,
read_consistency,
&shard_selection,
None,
)
.await;
assert!(result.is_ok());
let result = result.unwrap();
assert_eq!(result.len(), (n * 2) as usize);
let mut rng = SmallRng::seed_from_u64(SEED);
// use points 0..n and 1000..1000+n as expected vectors
let expected_vectors = (0..1000 + n)
.map(|i| (i, rng.gen::<[f32; 4]>().to_vec()))
.filter(|(i, _)| !(&n..&1000).contains(&i))
.map(|(_, v)| v)
.map(VectorStructInternal::from);
for (id_value, vector) in values.into_iter().zip(expected_vectors) {
let record = result
.get(&id_value)
.unwrap_or_else(|| panic!("Expected to find record for id {id_value}"));
assert_eq!(record.id, PointIdType::try_from(id_value.clone()).unwrap());
assert_eq!(
record.payload,
Some(Payload::from(json!({ "foo": format!("bar {}", id_value) })))
);
assert_eq!(record.vector, Some(vector));
}
}
fn first_uuid() -> String {
let mut rng = SmallRng::seed_from_u64(SEED);
Uuid::from_u128(rng.gen()).to_string()
}
#[rstest]
#[case::existing_uuid(first_uuid())]
#[case::zero_int(0i64)]
#[case::positive_int(1i64)]
#[case::existing_uint(999u64)]
fn parsable_pseudo_id_to_point_id(#[case] value: impl Into<PseudoId>) {
let value = value.into();
assert!(PointIdType::try_from(value).is_ok());
}
#[rstest]
#[case::negative_int(-1i64)]
#[case::non_uuid_string("not a uuid")]
fn non_parsable_pseudo_id_to_point_id(#[case] value: impl Into<PseudoId>) {
let value = value.into();
assert!(PointIdType::try_from(value).is_err());
}
#[rstest]
#[case::uuid(Uuid::new_v4().to_string())]
#[case::int(1001u64)]
#[tokio::test(flavor = "multi_thread")]
async fn nonexistent_lookup_ids_are_ignored(#[case] value: impl Into<PseudoId>) {
let value = value.into();
let Resources {
mut request,
collection,
read_consistency,
shard_selection,
} = setup().await;
let shard_selection = match shard_selection {
Some(shard_id) => ShardSelectorInternal::ShardId(shard_id),
None => ShardSelectorInternal::All,
};
let collection = collection.read().await;
let collection_by_name = |_: String| async { Some(collection) };
let values = vec![value];
request.with_payload = Some(true.into());
request.with_vectors = Some(true.into());
let result = lookup_ids(
request,
values,
collection_by_name,
read_consistency,
&shard_selection,
None,
)
.await;
assert!(result.is_ok());
let result = result.unwrap();
assert_eq!(result.len(), 0);
}
#[tokio::test(flavor = "multi_thread")]
async fn err_when_collection_by_name_returns_none() {
let Resources {
request,
read_consistency,
shard_selection,
..
} = setup().await;
let shard_selection = match shard_selection {
Some(shard_id) => ShardSelectorInternal::ShardId(shard_id),
None => ShardSelectorInternal::All,
};
let collection_by_name = |_: String| async { None };
let result = lookup_ids(
request,
vec![],
collection_by_name,
read_consistency,
&shard_selection,
None,
)
.await;
assert!(result.is_err());
assert_eq!(
result.unwrap_err().to_string(),
"Collection test not found".to_string()
);
}
|