Spaces:
Build error
Build error
File size: 14,643 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 |
use std::any::TypeId;
use std::collections::{HashMap, HashSet};
use std::sync::OnceLock;
use std::time::Duration;
use http::header::CONTENT_TYPE;
use http::{HeaderMap, HeaderValue, Method, Uri};
use issues::{Action, Code, ImmediateSolution, Issue, Solution};
use itertools::Itertools;
use strum::IntoEnumIterator as _;
use crate::common::operation_error::OperationError;
use crate::data_types::index::{TextIndexParams, TextIndexType, TokenizerType};
use crate::json_path::JsonPath;
use crate::types::{
AnyVariants, Condition, FieldCondition, Filter, Match, MatchValue, PayloadFieldSchema,
PayloadKeyType, PayloadSchemaParams, PayloadSchemaType, RangeInterface, UuidPayloadType,
};
#[derive(Debug)]
pub struct UnindexedField {
field_name: JsonPath,
field_schemas: HashSet<PayloadFieldSchema>,
collection_name: String,
endpoint: Uri,
instance_id: String,
}
/// Don't use this directly, use `UnindexedField::slow_query_threshold()` instead
pub static SLOW_QUERY_THRESHOLD: OnceLock<Duration> = OnceLock::new();
impl UnindexedField {
const DEFAULT_SLOW_QUERY_SECS: f32 = 1.2;
pub fn slow_query_threshold() -> Duration {
*SLOW_QUERY_THRESHOLD.get_or_init(|| Duration::from_secs_f32(Self::DEFAULT_SLOW_QUERY_SECS))
}
pub fn get_instance_id(collection_name: &str, field_name: &JsonPath) -> String {
format!("{collection_name}/{field_name}")
}
pub fn get_collection_name(code: &Code) -> &str {
debug_assert!(code.issue_type == TypeId::of::<Self>());
code.instance_id.split('/').next().unwrap_or("") // Code format is always the same
}
/// Try to form an issue from a field condition and a collection name
///
/// # Errors
///
/// Will fail if the field condition cannot be used for inferring an appropriate schema.
/// For example, when there is no index that can be built to improve performance.
pub fn try_new(
field_name: JsonPath,
field_schemas: HashSet<PayloadFieldSchema>,
collection_name: String,
) -> Result<Self, OperationError> {
if field_schemas.is_empty() {
return Err(OperationError::ValidationError {
description: "Cannot create issue which won't have a solution".to_string(),
});
}
let endpoint = match Uri::builder()
.path_and_query(format!("/collections/{collection_name}/index").as_str())
.build()
{
Ok(uri) => uri,
Err(e) => {
log::trace!("Failed to build uri: {e}");
return Err(OperationError::ValidationError {
description: "Bad collection name".to_string(),
});
}
};
let instance_id = Self::get_instance_id(&collection_name, &field_name);
Ok(Self {
field_name,
field_schemas,
collection_name,
endpoint,
instance_id,
})
}
pub fn submit_possible_suspects(
filter: &Filter,
payload_schema: &HashMap<PayloadKeyType, PayloadFieldSchema>,
collection_name: String,
) {
let unindexed_issues =
IssueExtractor::new(filter, payload_schema, collection_name).into_issues();
log::trace!("Found unindexed issues: {unindexed_issues:#?}");
for issue in unindexed_issues {
issue.submit();
}
}
}
impl Issue for UnindexedField {
fn instance_id(&self) -> &str {
&self.instance_id
}
fn name() -> &'static str {
"UNINDEXED_FIELD"
}
fn description(&self) -> String {
format!(
"Unindexed field '{}' might be slowing queries down in collection '{}'",
self.field_name, self.collection_name
)
}
fn solution(&self) -> Solution {
let mut solutions = self.field_schemas.iter().cloned().map(|field_schema| {
let request_body = serde_json::json!({
"field_name": self.field_name,
"field_schema": field_schema,
})
.as_object()
.unwrap()
.clone();
let headers = HeaderMap::from_iter([
(CONTENT_TYPE, HeaderValue::from_static("application/json")),
]);
ImmediateSolution {
message: format!(
"Create an index on field '{}' of schema {} in collection '{}'. Check the documentation for more details: https://qdrant.tech/documentation/concepts/indexing/#payload-index",
self.field_name, serde_json::to_string(&field_schema).unwrap(), self.collection_name
),
action: Action {
method: Method::PUT,
uri: self.endpoint.clone(),
headers,
body: Some(request_body),
},
}
}).collect_vec();
match solutions.len() {
0 => unreachable!(
"Cannot create a solution without a field schema, protected by try_new()"
),
1 => Solution::Immediate(solutions.pop().unwrap()),
_ => Solution::ImmediateChoice(solutions),
}
}
}
/// Suggest any index, let user choose depending on their data type
fn all_indexes() -> impl Iterator<Item = PayloadFieldSchema> {
PayloadSchemaType::iter().map(PayloadFieldSchema::FieldType)
}
fn infer_schema_from_match_value(value: &MatchValue) -> Vec<PayloadFieldSchema> {
match &value.value {
crate::types::ValueVariants::String(string) => {
let mut inferred = Vec::new();
if UuidPayloadType::parse_str(string).is_ok() {
inferred.push(PayloadFieldSchema::FieldType(PayloadSchemaType::Uuid))
}
inferred.push(PayloadFieldSchema::FieldType(PayloadSchemaType::Keyword));
inferred
}
crate::types::ValueVariants::Integer(_integer) => {
vec![PayloadFieldSchema::FieldType(PayloadSchemaType::Integer)]
}
crate::types::ValueVariants::Bool(_boolean) => {
vec![PayloadFieldSchema::FieldType(PayloadSchemaType::Bool)]
}
}
}
fn infer_schema_from_any_variants(value: &AnyVariants) -> Vec<PayloadFieldSchema> {
match value {
AnyVariants::Strings(strings) => {
let mut inferred = Vec::new();
if strings
.iter()
.all(|s| UuidPayloadType::parse_str(s).is_ok())
{
inferred.push(PayloadFieldSchema::FieldType(PayloadSchemaType::Uuid))
}
inferred.push(PayloadFieldSchema::FieldType(PayloadSchemaType::Keyword));
inferred
}
AnyVariants::Integers(_integers) => {
vec![PayloadFieldSchema::FieldType(PayloadSchemaType::Integer)]
}
}
}
fn infer_schema_from_field_condition(field_condition: &FieldCondition) -> Vec<PayloadFieldSchema> {
let FieldCondition {
key: _key,
r#match,
range,
geo_bounding_box,
geo_radius,
geo_polygon,
values_count,
} = field_condition;
let mut inferred = Vec::new();
if let Some(r#match) = r#match {
inferred.extend(match r#match {
Match::Value(match_value) => infer_schema_from_match_value(match_value),
Match::Text(_match_text) => {
vec![PayloadFieldSchema::FieldParams(PayloadSchemaParams::Text(
TextIndexParams {
r#type: TextIndexType::Text,
tokenizer: TokenizerType::default(),
min_token_len: None,
max_token_len: None,
lowercase: None,
on_disk: None,
},
))]
}
Match::Any(match_any) => infer_schema_from_any_variants(&match_any.any),
Match::Except(match_except) => infer_schema_from_any_variants(&match_except.except),
})
}
if let Some(range_interface) = range {
match range_interface {
RangeInterface::DateTime(_) => {
inferred.push(PayloadFieldSchema::FieldType(PayloadSchemaType::Datetime));
}
RangeInterface::Float(_) => {
inferred.push(PayloadFieldSchema::FieldType(PayloadSchemaType::Float));
inferred.push(PayloadFieldSchema::FieldType(PayloadSchemaType::Integer));
}
}
}
if geo_bounding_box.is_some() || geo_radius.is_some() || geo_polygon.is_some() {
inferred.push(PayloadFieldSchema::FieldType(PayloadSchemaType::Geo));
}
if values_count.is_some() {
// Any index will do, let user choose depending on their data type
inferred.extend(all_indexes());
}
inferred
}
pub struct IssueExtractor<'a> {
extractor: Extractor<'a>,
collection_name: String,
}
impl<'a> IssueExtractor<'a> {
pub fn new(
filter: &Filter,
payload_schema: &'a HashMap<PayloadKeyType, PayloadFieldSchema>,
collection_name: String,
) -> Self {
let extractor = Extractor::new_eager(filter, payload_schema);
Self {
extractor,
collection_name,
}
}
fn into_issues(self) -> Vec<UnindexedField> {
self.extractor
.unindexed_schema
.into_iter()
.filter_map(|(key, field_schemas)| {
let field_schemas: HashSet<_> = field_schemas
.iter()
.map(PayloadFieldSchema::kind)
.filter(|kind| {
let is_advanced = matches!(kind, PayloadSchemaType::Uuid);
!is_advanced
})
.map(PayloadFieldSchema::from)
.collect();
UnindexedField::try_new(key, field_schemas, self.collection_name.clone()).ok()
})
.collect()
}
}
pub struct Extractor<'a> {
payload_schema: &'a HashMap<PayloadKeyType, PayloadFieldSchema>,
unindexed_schema: HashMap<PayloadKeyType, Vec<PayloadFieldSchema>>,
}
impl<'a> Extractor<'a> {
/// Creates an extractor and eagerly extracts all unindexed fields from the provided filter.
fn new_eager(
filter: &Filter,
payload_schema: &'a HashMap<PayloadKeyType, PayloadFieldSchema>,
) -> Self {
let mut extractor = Self {
payload_schema,
unindexed_schema: HashMap::new(),
};
extractor.update_from_filter(None, filter);
extractor
}
/// Creates a new lazy 'Extractor'. It needs to call some update method to extract unindexed fields.
pub fn new(payload_schema: &'a HashMap<PayloadKeyType, PayloadFieldSchema>) -> Self {
Self {
payload_schema,
unindexed_schema: HashMap::new(),
}
}
/// Current unindexed schema.
pub fn unindexed_schema(&self) -> &HashMap<PayloadKeyType, Vec<PayloadFieldSchema>> {
&self.unindexed_schema
}
/// Checks the filter for unindexed fields.
fn update_from_filter(&mut self, nested_prefix: Option<&JsonPath>, filter: &Filter) {
for condition in filter.iter_conditions() {
self.update_from_condition(nested_prefix, condition);
}
}
/// Checks the filter for an unindexed field, stops at the first one found.
pub fn update_from_filter_once(&mut self, nested_prefix: Option<&JsonPath>, filter: &Filter) {
for condition in filter.iter_conditions() {
self.update_from_condition(nested_prefix, condition);
if !self.unindexed_schema.is_empty() {
break;
}
}
}
fn update_from_condition(&mut self, nested_prefix: Option<&JsonPath>, condition: &Condition) {
let key;
let inferred;
match condition {
Condition::Field(field_condition) => {
key = &field_condition.key;
inferred = infer_schema_from_field_condition(field_condition);
}
Condition::Filter(filter) => {
self.update_from_filter(nested_prefix, filter);
return;
}
Condition::Nested(nested) => {
self.update_from_filter(
Some(&JsonPath::extend_or_new(nested_prefix, nested.raw_key())),
nested.filter(),
);
return;
}
// Any index will suffice
Condition::IsEmpty(is_empty) => {
key = &is_empty.is_empty.key;
inferred = all_indexes().collect();
}
Condition::IsNull(is_null) => {
key = &is_null.is_null.key;
inferred = all_indexes().collect();
}
// No index needed
Condition::HasId(_) => return,
Condition::CustomIdChecker(_) => return,
Condition::HasVector(_) => return,
};
let full_key = JsonPath::extend_or_new(nested_prefix, key);
let needs_index = match self.payload_schema.get(&full_key) {
Some(index_info) => {
let index_info_kind = index_info.kind();
let already_indexed = inferred
.iter()
// TODO(strict-mode):
// Use better comparisons for parametrized indexes. An idea is to make the inferring step
// also output valid parametrized indexes and compare those instead of just the kind (index type)
//
// The only reason why it would be needed is because integer index can be parametrized
// with just lookup or just range, so it is possible to make a false negative here. E.g.
//
// condition: MatchValue
// inferred: FieldType(Integer)
// index_info: FieldParams(IntegerIndex(range))
//
// In this case, we would assume that the field is indexed correctly when it is not
.map(PayloadFieldSchema::kind)
.any(|inferred| inferred == index_info_kind);
!already_indexed
}
None => true,
};
if needs_index {
self.unindexed_schema
.entry(full_key)
.or_default()
.extend(inferred);
}
}
}
|