Spaces:
Build error
Build error
File size: 15,544 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 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 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 |
mod count;
mod discovery;
mod facet;
mod local_shard;
mod matrix;
mod query;
mod recommend;
mod search;
mod update;
use std::fmt::Display;
use segment::types::{Filter, SearchParams, StrictModeConfig};
use super::types::CollectionError;
use crate::collection::Collection;
// Creates a new `VerificationPass` without actually verifying anything.
// This is useful in situations where we don't need to check for strict mode, but still
// want to be able to access `TableOfContents` using `.toc()`.
// If you're not implementing a new point-api endpoint for which a strict mode check
// is required, this is safe to use.
pub fn new_unchecked_verification_pass() -> VerificationPass {
VerificationPass { inner: () }
}
/// A pass, created on successful verification.
pub struct VerificationPass {
// Private field, so we can't instantiate it from somewhere else.
#[allow(dead_code)]
inner: (),
}
/// Trait to verify strict mode for requests.
/// This trait ignores the `enabled` parameter in `StrictModeConfig`.
pub trait StrictModeVerification {
/// Implementing this method allows adding a custom check for request specific values.
fn check_custom(
&self,
_collection: &Collection,
_strict_mode_config: &StrictModeConfig,
) -> Result<(), CollectionError> {
Ok(())
}
/// Implement this to check the limit of a request.
fn query_limit(&self) -> Option<usize>;
/// Verifies that all keys in the given filter have an index available. Only implement this
/// if the filter operates on a READ-operation, like search.
/// For filtered updates implement `request_indexed_filter_write`!
fn indexed_filter_read(&self) -> Option<&Filter>;
/// Verifies that all keys in the given filter have an index available. Only implement this
/// if the filter is used for filtered-UPDATES like delete by payload.
/// For read only filters implement `request_indexed_filter_read`!
fn indexed_filter_write(&self) -> Option<&Filter>;
fn request_exact(&self) -> Option<bool>;
fn request_search_params(&self) -> Option<&SearchParams>;
/// Checks the 'exact' parameter.
fn check_request_exact(
&self,
strict_mode_config: &StrictModeConfig,
) -> Result<(), CollectionError> {
check_bool_opt(
self.request_exact(),
strict_mode_config.search_allow_exact,
"Exact search",
"exact",
)
}
/// Checks the request limit.
fn check_request_query_limit(
&self,
strict_mode_config: &StrictModeConfig,
) -> Result<(), CollectionError> {
check_limit_opt(
self.query_limit(),
strict_mode_config.max_query_limit,
"limit",
)
}
/// Checks search parameters.
fn check_search_params(
&self,
collection: &Collection,
strict_mode_config: &StrictModeConfig,
) -> Result<(), CollectionError> {
if let Some(search_params) = self.request_search_params() {
search_params.check_strict_mode(collection, strict_mode_config)?;
}
Ok(())
}
// Checks all filters use indexed fields only.
fn check_request_filter(
&self,
collection: &Collection,
strict_mode_config: &StrictModeConfig,
) -> Result<(), CollectionError> {
let check_filter = |filter: Option<&Filter>,
allow_unindexed_filter: Option<bool>|
-> Result<(), CollectionError> {
if let Some(read_filter) = filter {
if allow_unindexed_filter == Some(false) {
if let Some((key, schemas)) = collection.one_unindexed_key(read_filter) {
let possible_schemas_str = schemas
.iter()
.map(|schema| schema.to_string())
.collect::<Vec<_>>()
.join(", ");
return Err(CollectionError::strict_mode(
format!("Index required but not found for \"{key}\" of one of the following types: [{possible_schemas_str}]"),
"Create an index for this key or use a different filter.",
));
}
}
}
Ok(())
};
check_filter(
self.indexed_filter_read(),
strict_mode_config.unindexed_filtering_retrieve,
)?;
check_filter(
self.indexed_filter_write(),
strict_mode_config.unindexed_filtering_update,
)?;
Ok(())
}
/// Does the verification of all configured parameters. Only implement this function if you know what
/// you are doing. In most cases implementing `check_custom` is sufficient.
fn check_strict_mode(
&self,
collection: &Collection,
strict_mode_config: &StrictModeConfig,
) -> Result<(), CollectionError> {
self.check_custom(collection, strict_mode_config)?;
self.check_request_query_limit(strict_mode_config)?;
self.check_request_filter(collection, strict_mode_config)?;
self.check_request_exact(strict_mode_config)?;
self.check_search_params(collection, strict_mode_config)?;
Ok(())
}
}
pub fn check_timeout(
timeout: usize,
strict_mode_config: &StrictModeConfig,
) -> Result<(), CollectionError> {
check_limit_opt(Some(timeout), strict_mode_config.max_timeout, "timeout")
}
pub(crate) fn check_bool_opt(
value: Option<bool>,
allowed: Option<bool>,
name: &str,
parameter: &str,
) -> Result<(), CollectionError> {
if allowed != Some(false) || !value.unwrap_or_default() {
return Ok(());
}
Err(CollectionError::strict_mode(
format!("{name} disabled!"),
format!("Set {parameter}=false."),
))
}
pub(crate) fn check_limit_opt<T: PartialOrd + Display>(
value: Option<T>,
limit: Option<T>,
name: &str,
) -> Result<(), CollectionError> {
let (Some(limit), Some(value)) = (limit, value) else {
return Ok(());
};
if value > limit {
return Err(CollectionError::strict_mode(
format!("Limit exceeded {value} > {limit} for \"{name}\""),
format!("Reduce the \"{name}\" parameter to or below {limit}."),
));
}
Ok(())
}
impl StrictModeVerification for SearchParams {
fn check_custom(
&self,
_collection: &Collection,
strict_mode_config: &StrictModeConfig,
) -> Result<(), CollectionError> {
check_limit_opt(
self.quantization.and_then(|i| i.oversampling),
strict_mode_config.search_max_oversampling,
"oversampling",
)?;
check_limit_opt(
self.hnsw_ef,
strict_mode_config.search_max_hnsw_ef,
"hnsw_ef",
)?;
Ok(())
}
fn request_exact(&self) -> Option<bool> {
Some(self.exact)
}
fn query_limit(&self) -> Option<usize> {
None
}
fn indexed_filter_read(&self) -> Option<&Filter> {
None
}
fn indexed_filter_write(&self) -> Option<&Filter> {
None
}
fn request_search_params(&self) -> Option<&SearchParams> {
None
}
}
#[cfg(test)]
mod test {
use std::sync::Arc;
use common::cpu::CpuBudget;
use segment::types::{
Condition, FieldCondition, Filter, Match, PayloadFieldSchema, PayloadSchemaType,
SearchParams, StrictModeConfig, ValueVariants,
};
use tempfile::Builder;
use super::StrictModeVerification;
use crate::collection::{Collection, RequestShardTransfer};
use crate::config::{CollectionConfigInternal, CollectionParams, WalConfig};
use crate::operations::point_ops::{FilterSelector, PointsSelector};
use crate::operations::shared_storage_config::SharedStorageConfig;
use crate::operations::types::{
CollectionError, CountRequestInternal, DiscoverRequestInternal,
};
use crate::optimizers_builder::OptimizersConfig;
use crate::shards::channel_service::ChannelService;
use crate::shards::collection_shard_distribution::CollectionShardDistribution;
use crate::shards::replica_set::{AbortShardTransfer, ChangePeerFromState};
const UNINDEXED_KEY: &str = "key";
const INDEXED_KEY: &str = "num";
#[tokio::test(flavor = "multi_thread")]
async fn test_strict_mode_verification_trait() {
let collection = fixture().await;
test_query_limit(&collection).await;
test_search_params(&collection).await;
test_filter_read(&collection).await;
test_filter_write(&collection).await;
test_request_exact(&collection).await;
}
async fn test_query_limit(collection: &Collection) {
assert_strict_mode_error(discovery_fixture(Some(10), None, None), collection).await;
assert_strict_mode_success(discovery_fixture(Some(4), None, None), collection).await;
}
async fn test_filter_read(collection: &Collection) {
let filter = filter_fixture(UNINDEXED_KEY);
assert_strict_mode_error(discovery_fixture(None, Some(filter), None), collection).await;
let filter = filter_fixture(INDEXED_KEY);
assert_strict_mode_success(discovery_fixture(None, Some(filter), None), collection).await;
}
async fn test_search_params(collection: &Collection) {
let restricted_params = search_params_fixture(true);
assert_strict_mode_error(
discovery_fixture(None, None, Some(restricted_params)),
collection,
)
.await;
let allowed_params = search_params_fixture(false);
assert_strict_mode_success(
discovery_fixture(None, None, Some(allowed_params)),
collection,
)
.await;
}
async fn test_filter_write(collection: &Collection) {
let restricted_request = PointsSelector::FilterSelector(FilterSelector {
filter: filter_fixture(UNINDEXED_KEY),
shard_key: None,
});
assert_strict_mode_error(restricted_request, collection).await;
let allowed_request = PointsSelector::FilterSelector(FilterSelector {
filter: filter_fixture(INDEXED_KEY),
shard_key: None,
});
assert_strict_mode_success(allowed_request, collection).await;
}
async fn test_request_exact(collection: &Collection) {
let request = CountRequestInternal {
filter: None,
exact: true,
};
assert_strict_mode_error(request, collection).await;
let request = CountRequestInternal {
filter: None,
exact: false,
};
assert_strict_mode_success(request, collection).await;
}
async fn assert_strict_mode_error<R: StrictModeVerification>(
request: R,
collection: &Collection,
) {
let strict_mode_config = collection.strict_mode_config().await.unwrap();
let error = request
.check_strict_mode(collection, &strict_mode_config)
.expect_err("Expected strict mode error but got Ok() value");
if !matches!(error, CollectionError::StrictMode { .. }) {
panic!("Expected strict mode error but got {error:#}");
}
}
async fn assert_strict_mode_success<R: StrictModeVerification>(
request: R,
collection: &Collection,
) {
let strict_mode_config = collection.strict_mode_config().await.unwrap();
let res = request.check_strict_mode(collection, &strict_mode_config);
if let Err(CollectionError::StrictMode { description }) = res {
panic!("Strict mode check should've passed but failed with error: {description:?}");
} else if res.is_err() {
panic!("Unexpected error");
}
}
fn filter_fixture(key: &str) -> Filter {
Filter::new_must(Condition::Field(FieldCondition::new_match(
key.try_into().unwrap(),
Match::new_value(ValueVariants::Integer(123)),
)))
}
fn search_params_fixture(exact: bool) -> SearchParams {
SearchParams {
exact,
..SearchParams::default()
}
}
fn discovery_fixture(
limit: Option<usize>,
filter: Option<Filter>,
search_params: Option<SearchParams>,
) -> DiscoverRequestInternal {
DiscoverRequestInternal {
limit: limit.unwrap_or(0),
filter,
params: search_params,
target: None,
context: None,
offset: None,
with_payload: None,
with_vector: None,
using: None,
lookup_from: None,
}
}
async fn fixture() -> Collection {
let strict_mode_config = StrictModeConfig {
enabled: Some(true),
max_timeout: Some(3),
max_query_limit: Some(4),
unindexed_filtering_update: Some(false),
unindexed_filtering_retrieve: Some(false),
search_max_hnsw_ef: Some(3),
search_allow_exact: Some(false),
search_max_oversampling: Some(0.2),
};
fixture_collection(&strict_mode_config).await
}
async fn fixture_collection(strict_mode_config: &StrictModeConfig) -> Collection {
let wal_config = WalConfig::default();
let collection_params = CollectionParams::empty();
let config = CollectionConfigInternal {
params: collection_params,
optimizer_config: OptimizersConfig::fixture(),
wal_config,
hnsw_config: Default::default(),
quantization_config: Default::default(),
strict_mode_config: Some(strict_mode_config.clone()),
uuid: None,
};
let collection_dir = Builder::new().prefix("test_collection").tempdir().unwrap();
let snapshots_path = Builder::new().prefix("test_snapshots").tempdir().unwrap();
let collection_name = "test".to_string();
let storage_config: SharedStorageConfig = SharedStorageConfig::default();
let storage_config = Arc::new(storage_config);
let collection = Collection::new(
collection_name.clone(),
0,
collection_dir.path(),
snapshots_path.path(),
&config,
storage_config.clone(),
CollectionShardDistribution::all_local(None, 0),
ChannelService::default(),
dummy_on_replica_failure(),
dummy_request_shard_transfer(),
dummy_abort_shard_transfer(),
None,
None,
CpuBudget::default(),
None,
)
.await
.expect("Failed to create new fixture collection");
collection
.create_payload_index(
INDEXED_KEY.parse().unwrap(),
PayloadFieldSchema::FieldType(PayloadSchemaType::Integer),
)
.await
.expect("failed to create payload index");
collection
}
pub fn dummy_on_replica_failure() -> ChangePeerFromState {
Arc::new(move |_peer_id, _shard_id, _from_state| {})
}
pub fn dummy_request_shard_transfer() -> RequestShardTransfer {
Arc::new(move |_transfer| {})
}
pub fn dummy_abort_shard_transfer() -> AbortShardTransfer {
Arc::new(|_transfer, _reason| {})
}
}
|