Spaces:
Build error
Build error
File size: 5,466 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 |
use std::time::Duration;
use actix_web::{get, post, web, Responder};
use actix_web_validator::{Json, Path, Query};
use collection::operations::consistency_params::ReadConsistency;
use collection::operations::shard_selector_internal::ShardSelectorInternal;
use collection::operations::types::{
PointRequest, PointRequestInternal, RecordInternal, ScrollRequest,
};
use futures::TryFutureExt;
use itertools::Itertools;
use segment::types::{PointIdType, WithPayloadInterface};
use serde::Deserialize;
use storage::content_manager::collection_verification::{
check_strict_mode, check_strict_mode_timeout,
};
use storage::content_manager::errors::StorageError;
use storage::content_manager::toc::TableOfContent;
use storage::dispatcher::Dispatcher;
use storage::rbac::Access;
use tokio::time::Instant;
use validator::Validate;
use super::read_params::ReadParams;
use super::CollectionPath;
use crate::actix::auth::ActixAccess;
use crate::actix::helpers::{self, process_response_error};
use crate::common::points::do_get_points;
#[derive(Deserialize, Validate)]
struct PointPath {
#[validate(length(min = 1))]
// TODO: validate this is a valid ID type (usize or UUID)? Does currently error on deserialize.
id: String,
}
async fn do_get_point(
toc: &TableOfContent,
collection_name: &str,
point_id: PointIdType,
read_consistency: Option<ReadConsistency>,
timeout: Option<Duration>,
access: Access,
) -> Result<Option<RecordInternal>, StorageError> {
let request = PointRequestInternal {
ids: vec![point_id],
with_payload: Some(WithPayloadInterface::Bool(true)),
with_vector: true.into(),
};
let shard_selection = ShardSelectorInternal::All;
toc.retrieve(
collection_name,
request,
read_consistency,
timeout,
shard_selection,
access,
)
.await
.map(|points| points.into_iter().next())
}
#[get("/collections/{name}/points/{id}")]
async fn get_point(
dispatcher: web::Data<Dispatcher>,
collection: Path<CollectionPath>,
point: Path<PointPath>,
params: Query<ReadParams>,
ActixAccess(access): ActixAccess,
) -> impl Responder {
let pass = match check_strict_mode_timeout(
params.timeout_as_secs(),
&collection.name,
&dispatcher,
&access,
)
.await
{
Ok(p) => p,
Err(err) => return process_response_error(err, Instant::now(), None),
};
helpers::time(async move {
let point_id: PointIdType = point.id.parse().map_err(|_| StorageError::BadInput {
description: format!("Can not recognize \"{}\" as point id", point.id),
})?;
let Some(record) = do_get_point(
dispatcher.toc(&access, &pass),
&collection.name,
point_id,
params.consistency,
params.timeout(),
access,
)
.await?
else {
return Err(StorageError::NotFound {
description: format!("Point with id {point_id} does not exists!"),
});
};
Ok(api::rest::Record::from(record))
})
.await
}
#[post("/collections/{name}/points")]
async fn get_points(
dispatcher: web::Data<Dispatcher>,
collection: Path<CollectionPath>,
request: Json<PointRequest>,
params: Query<ReadParams>,
ActixAccess(access): ActixAccess,
) -> impl Responder {
let pass = match check_strict_mode_timeout(
params.timeout_as_secs(),
&collection.name,
&dispatcher,
&access,
)
.await
{
Ok(p) => p,
Err(err) => return process_response_error(err, Instant::now(), None),
};
let PointRequest {
point_request,
shard_key,
} = request.into_inner();
let shard_selection = match shard_key {
None => ShardSelectorInternal::All,
Some(shard_keys) => ShardSelectorInternal::from(shard_keys),
};
helpers::time(
do_get_points(
dispatcher.toc(&access, &pass),
&collection.name,
point_request,
params.consistency,
params.timeout(),
shard_selection,
access,
)
.map_ok(|response| {
response
.into_iter()
.map(api::rest::Record::from)
.collect_vec()
}),
)
.await
}
#[post("/collections/{name}/points/scroll")]
async fn scroll_points(
dispatcher: web::Data<Dispatcher>,
collection: Path<CollectionPath>,
request: Json<ScrollRequest>,
params: Query<ReadParams>,
ActixAccess(access): ActixAccess,
) -> impl Responder {
let ScrollRequest {
scroll_request,
shard_key,
} = request.into_inner();
let pass = match check_strict_mode(
&scroll_request,
params.timeout_as_secs(),
&collection.name,
&dispatcher,
&access,
)
.await
{
Ok(pass) => pass,
Err(err) => return process_response_error(err, Instant::now(), None),
};
let shard_selection = match shard_key {
None => ShardSelectorInternal::All,
Some(shard_keys) => ShardSelectorInternal::from(shard_keys),
};
helpers::time(dispatcher.toc(&access, &pass).scroll(
&collection.name,
scroll_request,
params.consistency,
params.timeout(),
shard_selection,
access,
))
.await
}
|