Spaces:
Build error
Build error
File size: 19,185 Bytes
d8435ba |
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 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 |
use std::str::FromStr;
use std::sync::Arc;
use std::time::{Duration, Instant};
use api::grpc::qdrant::points_internal_server::PointsInternal;
use api::grpc::qdrant::{
ClearPayloadPointsInternal, CoreSearchBatchPointsInternal, CountPointsInternal, CountResponse,
CreateFieldIndexCollectionInternal, DeleteFieldIndexCollectionInternal,
DeletePayloadPointsInternal, DeletePointsInternal, DeleteVectorsInternal, FacetCountsInternal,
FacetResponseInternal, GetPointsInternal, GetResponse, IntermediateResult,
PointsOperationResponseInternal, QueryBatchPointsInternal, QueryBatchResponseInternal,
QueryResultInternal, QueryShardPoints, RecommendPointsInternal, RecommendResponse,
ScrollPointsInternal, ScrollResponse, SearchBatchResponse, SetPayloadPointsInternal,
SyncPointsInternal, UpdateVectorsInternal, UpsertPointsInternal,
};
use collection::operations::shard_selector_internal::ShardSelectorInternal;
use collection::operations::universal_query::shard_query::ShardQueryRequest;
use collection::shards::shard::ShardId;
use common::counter::hardware_accumulator::HwMeasurementAcc;
use itertools::Itertools;
use segment::data_types::facets::{FacetParams, FacetResponse};
use segment::json_path::JsonPath;
use segment::types::Filter;
use storage::content_manager::toc::request_hw_counter::RequestHwCounter;
use storage::content_manager::toc::TableOfContent;
use storage::rbac::Access;
use tonic::{Request, Response, Status};
use super::points_common::{core_search_list, scroll};
use super::validate_and_log;
use crate::settings::ServiceConfig;
use crate::tonic::api::points_common::{
clear_payload, count, create_field_index_internal, delete, delete_field_index_internal,
delete_payload, delete_vectors, get, overwrite_payload, recommend, set_payload, sync,
update_vectors, upsert,
};
use crate::tonic::verification::UncheckedTocProvider;
const FULL_ACCESS: Access = Access::full("Internal API");
/// This API is intended for P2P communication within a distributed deployment.
pub struct PointsInternalService {
toc: Arc<TableOfContent>,
service_config: ServiceConfig,
}
impl PointsInternalService {
pub fn new(toc: Arc<TableOfContent>, service_config: ServiceConfig) -> Self {
Self {
toc,
service_config,
}
}
}
pub async fn query_batch_internal(
toc: &TableOfContent,
collection_name: String,
query_points: Vec<QueryShardPoints>,
shard_selection: Option<ShardId>,
timeout: Option<Duration>,
request_hw_data: RequestHwCounter,
) -> Result<Response<QueryBatchResponseInternal>, Status> {
let batch_requests: Vec<_> = query_points
.into_iter()
.map(ShardQueryRequest::try_from)
.try_collect()?;
let timing = Instant::now();
// As this function is handling an internal request,
// we can assume that shard_key is already resolved
let shard_selection = match shard_selection {
None => {
debug_assert!(false, "Shard selection is expected for internal request");
ShardSelectorInternal::All
}
Some(shard_id) => ShardSelectorInternal::ShardId(shard_id),
};
let batch_response = toc
.query_batch_internal(
&collection_name,
batch_requests,
shard_selection,
timeout,
request_hw_data.get_counter(),
)
.await?;
let response = QueryBatchResponseInternal {
results: batch_response
.into_iter()
.map(|response| QueryResultInternal {
intermediate_results: response
.into_iter()
.map(|intermediate| IntermediateResult {
result: intermediate.into_iter().map(From::from).collect_vec(),
})
.collect_vec(),
})
.collect(),
time: timing.elapsed().as_secs_f64(),
usage: request_hw_data.to_grpc_api(),
};
Ok(Response::new(response))
}
async fn facet_counts_internal(
toc: &TableOfContent,
request: FacetCountsInternal,
) -> Result<Response<FacetResponseInternal>, Status> {
let timing = Instant::now();
let FacetCountsInternal {
collection_name,
key,
filter,
limit,
exact,
shard_id,
timeout,
} = request;
let shard_selection = ShardSelectorInternal::ShardId(shard_id);
let request = FacetParams {
key: JsonPath::from_str(&key)
.map_err(|_| Status::invalid_argument("Failed to parse facet key"))?,
limit: limit as usize,
filter: filter.map(Filter::try_from).transpose()?,
exact,
};
let response = toc
.facet_internal(
&collection_name,
request,
shard_selection,
timeout.map(Duration::from_secs),
)
.await?;
let FacetResponse { hits } = response;
let response = FacetResponseInternal {
hits: hits.into_iter().map(From::from).collect_vec(),
time: timing.elapsed().as_secs_f64(),
};
Ok(Response::new(response))
}
impl PointsInternalService {
/// Generates a new `RequestHwCounter` for the request.
/// This counter is indented to be used for internal requests.
///
/// So, it collects the hardware usage to the collection's counter ONLY if it was not
/// converted to a response.
fn get_request_collection_hw_usage_counter_for_internal(
&self,
collection_name: String,
) -> RequestHwCounter {
let counter =
HwMeasurementAcc::new_with_drain(&self.toc.get_collection_hw_metrics(collection_name));
RequestHwCounter::new(counter, self.service_config.hardware_reporting(), true)
}
}
#[tonic::async_trait]
impl PointsInternal for PointsInternalService {
async fn upsert(
&self,
request: Request<UpsertPointsInternal>,
) -> Result<Response<PointsOperationResponseInternal>, Status> {
validate_and_log(request.get_ref());
let UpsertPointsInternal {
upsert_points,
shard_id,
clock_tag,
} = request.into_inner();
let upsert_points =
upsert_points.ok_or_else(|| Status::invalid_argument("UpsertPoints is missing"))?;
upsert(
self.toc.clone(),
upsert_points,
clock_tag.map(Into::into),
shard_id,
FULL_ACCESS.clone(),
)
.await
}
async fn delete(
&self,
request: Request<DeletePointsInternal>,
) -> Result<Response<PointsOperationResponseInternal>, Status> {
validate_and_log(request.get_ref());
let DeletePointsInternal {
delete_points,
shard_id,
clock_tag,
} = request.into_inner();
let delete_points =
delete_points.ok_or_else(|| Status::invalid_argument("DeletePoints is missing"))?;
delete(
UncheckedTocProvider::new_unchecked(&self.toc),
delete_points,
clock_tag.map(Into::into),
shard_id,
FULL_ACCESS.clone(),
)
.await
}
async fn update_vectors(
&self,
request: Request<UpdateVectorsInternal>,
) -> Result<Response<PointsOperationResponseInternal>, Status> {
validate_and_log(request.get_ref());
let request = request.into_inner();
let shard_id = request.shard_id;
let clock_tag = request.clock_tag;
let update_point_vectors = request
.update_vectors
.ok_or_else(|| Status::invalid_argument("UpdateVectors is missing"))?;
update_vectors(
self.toc.clone(),
update_point_vectors,
clock_tag.map(Into::into),
shard_id,
FULL_ACCESS.clone(),
)
.await
}
async fn delete_vectors(
&self,
request: Request<DeleteVectorsInternal>,
) -> Result<Response<PointsOperationResponseInternal>, Status> {
validate_and_log(request.get_ref());
let request = request.into_inner();
let shard_id = request.shard_id;
let clock_tag = request.clock_tag;
let delete_point_vectors = request
.delete_vectors
.ok_or_else(|| Status::invalid_argument("DeleteVectors is missing"))?;
delete_vectors(
UncheckedTocProvider::new_unchecked(&self.toc),
delete_point_vectors,
clock_tag.map(Into::into),
shard_id,
FULL_ACCESS.clone(),
)
.await
}
async fn set_payload(
&self,
request: Request<SetPayloadPointsInternal>,
) -> Result<Response<PointsOperationResponseInternal>, Status> {
validate_and_log(request.get_ref());
let SetPayloadPointsInternal {
set_payload_points,
shard_id,
clock_tag,
} = request.into_inner();
let set_payload_points = set_payload_points
.ok_or_else(|| Status::invalid_argument("SetPayloadPoints is missing"))?;
set_payload(
UncheckedTocProvider::new_unchecked(&self.toc),
set_payload_points,
clock_tag.map(Into::into),
shard_id,
FULL_ACCESS.clone(),
)
.await
}
async fn overwrite_payload(
&self,
request: Request<SetPayloadPointsInternal>,
) -> Result<Response<PointsOperationResponseInternal>, Status> {
validate_and_log(request.get_ref());
let SetPayloadPointsInternal {
set_payload_points,
shard_id,
clock_tag,
} = request.into_inner();
let set_payload_points = set_payload_points
.ok_or_else(|| Status::invalid_argument("SetPayloadPoints is missing"))?;
overwrite_payload(
UncheckedTocProvider::new_unchecked(&self.toc),
set_payload_points,
clock_tag.map(Into::into),
shard_id,
FULL_ACCESS.clone(),
)
.await
}
async fn delete_payload(
&self,
request: Request<DeletePayloadPointsInternal>,
) -> Result<Response<PointsOperationResponseInternal>, Status> {
validate_and_log(request.get_ref());
let DeletePayloadPointsInternal {
delete_payload_points,
shard_id,
clock_tag,
} = request.into_inner();
let delete_payload_points = delete_payload_points
.ok_or_else(|| Status::invalid_argument("DeletePayloadPoints is missing"))?;
delete_payload(
UncheckedTocProvider::new_unchecked(&self.toc),
delete_payload_points,
clock_tag.map(Into::into),
shard_id,
FULL_ACCESS.clone(),
)
.await
}
async fn clear_payload(
&self,
request: Request<ClearPayloadPointsInternal>,
) -> Result<Response<PointsOperationResponseInternal>, Status> {
validate_and_log(request.get_ref());
let ClearPayloadPointsInternal {
clear_payload_points,
shard_id,
clock_tag,
} = request.into_inner();
let clear_payload_points = clear_payload_points
.ok_or_else(|| Status::invalid_argument("ClearPayloadPoints is missing"))?;
clear_payload(
UncheckedTocProvider::new_unchecked(&self.toc),
clear_payload_points,
clock_tag.map(Into::into),
shard_id,
FULL_ACCESS.clone(),
)
.await
}
async fn create_field_index(
&self,
request: Request<CreateFieldIndexCollectionInternal>,
) -> Result<Response<PointsOperationResponseInternal>, Status> {
validate_and_log(request.get_ref());
let CreateFieldIndexCollectionInternal {
create_field_index_collection,
shard_id,
clock_tag,
} = request.into_inner();
let create_field_index_collection = create_field_index_collection
.ok_or_else(|| Status::invalid_argument("CreateFieldIndexCollection is missing"))?;
create_field_index_internal(
self.toc.clone(),
create_field_index_collection,
clock_tag.map(Into::into),
shard_id,
)
.await
}
async fn delete_field_index(
&self,
request: Request<DeleteFieldIndexCollectionInternal>,
) -> Result<Response<PointsOperationResponseInternal>, Status> {
validate_and_log(request.get_ref());
let DeleteFieldIndexCollectionInternal {
delete_field_index_collection,
shard_id,
clock_tag,
} = request.into_inner();
let delete_field_index_collection = delete_field_index_collection
.ok_or_else(|| Status::invalid_argument("DeleteFieldIndexCollection is missing"))?;
delete_field_index_internal(
self.toc.clone(),
delete_field_index_collection,
clock_tag.map(Into::into),
shard_id,
)
.await
}
async fn core_search_batch(
&self,
request: Request<CoreSearchBatchPointsInternal>,
) -> Result<Response<SearchBatchResponse>, Status> {
validate_and_log(request.get_ref());
let CoreSearchBatchPointsInternal {
collection_name,
search_points,
shard_id,
timeout,
} = request.into_inner();
let timeout = timeout.map(Duration::from_secs);
// Individual `read_consistency` values are ignored by `core_search_batch`...
//
// search_points
// .iter_mut()
// .for_each(|search_points| search_points.read_consistency = None);
let hw_data =
self.get_request_collection_hw_usage_counter_for_internal(collection_name.clone());
let res = core_search_list(
self.toc.as_ref(),
collection_name,
search_points,
None, // *Has* to be `None`!
shard_id,
FULL_ACCESS.clone(),
timeout,
hw_data,
)
.await?;
Ok(res)
}
async fn recommend(
&self,
request: Request<RecommendPointsInternal>,
) -> Result<Response<RecommendResponse>, Status> {
validate_and_log(request.get_ref());
let RecommendPointsInternal {
recommend_points,
.. // shard_id - is not used in internal API,
// because it is transformed into regular search requests on the first node
} = request.into_inner();
let mut recommend_points = recommend_points
.ok_or_else(|| Status::invalid_argument("RecommendPoints is missing"))?;
recommend_points.read_consistency = None; // *Have* to be `None`!
let collection_name = recommend_points.collection_name.clone();
let hw_data = self.get_request_collection_hw_usage_counter_for_internal(collection_name);
let res = recommend(
UncheckedTocProvider::new_unchecked(&self.toc),
recommend_points,
FULL_ACCESS.clone(),
hw_data,
)
.await?;
Ok(res)
}
async fn scroll(
&self,
request: Request<ScrollPointsInternal>,
) -> Result<Response<ScrollResponse>, Status> {
validate_and_log(request.get_ref());
let ScrollPointsInternal {
scroll_points,
shard_id,
} = request.into_inner();
let mut scroll_points =
scroll_points.ok_or_else(|| Status::invalid_argument("ScrollPoints is missing"))?;
scroll_points.read_consistency = None; // *Have* to be `None`!
scroll(
UncheckedTocProvider::new_unchecked(&self.toc),
scroll_points,
shard_id,
FULL_ACCESS.clone(),
)
.await
}
async fn get(
&self,
request: Request<GetPointsInternal>,
) -> Result<Response<GetResponse>, Status> {
validate_and_log(request.get_ref());
let GetPointsInternal {
get_points,
shard_id,
} = request.into_inner();
let mut get_points =
get_points.ok_or_else(|| Status::invalid_argument("GetPoints is missing"))?;
get_points.read_consistency = None; // *Have* to be `None`!
get(
UncheckedTocProvider::new_unchecked(&self.toc),
get_points,
shard_id,
FULL_ACCESS.clone(),
)
.await
}
async fn count(
&self,
request: Request<CountPointsInternal>,
) -> Result<Response<CountResponse>, Status> {
validate_and_log(request.get_ref());
let CountPointsInternal {
count_points,
shard_id,
} = request.into_inner();
let count_points =
count_points.ok_or_else(|| Status::invalid_argument("CountPoints is missing"))?;
let hw_data = self.get_request_collection_hw_usage_counter_for_internal(
count_points.collection_name.clone(),
);
let res = count(
UncheckedTocProvider::new_unchecked(&self.toc),
count_points,
shard_id,
&FULL_ACCESS,
hw_data,
)
.await?;
Ok(res)
}
async fn sync(
&self,
request: Request<SyncPointsInternal>,
) -> Result<Response<PointsOperationResponseInternal>, Status> {
validate_and_log(request.get_ref());
let SyncPointsInternal {
sync_points,
shard_id,
clock_tag,
} = request.into_inner();
let sync_points =
sync_points.ok_or_else(|| Status::invalid_argument("SyncPoints is missing"))?;
sync(
self.toc.clone(),
sync_points,
clock_tag.map(Into::into),
shard_id,
FULL_ACCESS.clone(),
)
.await
}
async fn query_batch(
&self,
request: Request<QueryBatchPointsInternal>,
) -> Result<Response<QueryBatchResponseInternal>, Status> {
validate_and_log(request.get_ref());
let QueryBatchPointsInternal {
collection_name,
shard_id,
query_points,
timeout,
} = request.into_inner();
let timeout = timeout.map(Duration::from_secs);
let hw_data =
self.get_request_collection_hw_usage_counter_for_internal(collection_name.clone());
query_batch_internal(
self.toc.as_ref(),
collection_name,
query_points,
shard_id,
timeout,
hw_data,
)
.await
}
async fn facet(
&self,
request: Request<FacetCountsInternal>,
) -> Result<Response<FacetResponseInternal>, Status> {
validate_and_log(request.get_ref());
facet_counts_internal(self.toc.as_ref(), request.into_inner()).await
}
}
|