Spaces:
Build error
Build error
File size: 15,186 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 |
use std::path::Path;
use std::sync::Arc;
use std::time::Duration;
use async_trait::async_trait;
use common::counter::hardware_accumulator::HwMeasurementAcc;
use common::tar_ext;
use common::types::TelemetryDetail;
use segment::data_types::facets::{FacetParams, FacetResponse};
use segment::data_types::order_by::OrderBy;
use segment::types::{
ExtendedPointId, Filter, PointIdType, ScoredPoint, SnapshotFormat, WithPayload,
WithPayloadInterface, WithVector,
};
use tokio::runtime::Handle;
use tokio::sync::Mutex;
use super::shard::ShardId;
use super::update_tracker::UpdateTracker;
use crate::hash_ring::HashRingRouter;
use crate::operations::point_ops::{
PointInsertOperationsInternal, PointOperations, PointStructPersisted, PointSyncOperation,
};
use crate::operations::types::{
CollectionError, CollectionInfo, CollectionResult, CoreSearchRequestBatch,
CountRequestInternal, CountResult, PointRequestInternal, RecordInternal, UpdateResult,
UpdateStatus,
};
use crate::operations::universal_query::shard_query::{ShardQueryRequest, ShardQueryResponse};
use crate::operations::{
CollectionUpdateOperations, CreateIndex, FieldIndexOperations, OperationToShard,
OperationWithClockTag, SplitByShard as _,
};
use crate::shards::local_shard::LocalShard;
use crate::shards::remote_shard::RemoteShard;
use crate::shards::shard_trait::ShardOperation;
use crate::shards::telemetry::LocalShardTelemetry;
/// ForwardProxyShard
///
/// ForwardProxyShard is a wrapper type for a LocalShard.
///
/// It can be used to provide all read and write operations while the wrapped shard is being transferred to another node.
/// Proxy forwards all operations to remote shards.
pub struct ForwardProxyShard {
shard_id: ShardId,
pub(crate) wrapped_shard: LocalShard,
pub(crate) remote_shard: RemoteShard,
resharding_hash_ring: Option<HashRingRouter>,
/// Lock required to protect transfer-in-progress updates.
/// It should block data updating operations while the batch is being transferred.
update_lock: Mutex<()>,
}
impl ForwardProxyShard {
pub fn new(
shard_id: ShardId,
wrapped_shard: LocalShard,
remote_shard: RemoteShard,
resharding_hash_ring: Option<HashRingRouter>,
) -> Self {
// Validate that `ForwardProxyShard` initialized correctly
debug_assert!({
let is_regular = shard_id == remote_shard.id && resharding_hash_ring.is_none();
let is_resharding = shard_id != remote_shard.id && resharding_hash_ring.is_some();
is_regular || is_resharding
});
if shard_id == remote_shard.id && resharding_hash_ring.is_some() {
log::warn!(
"ForwardProxyShard initialized with resharding hashring, \
but wrapped shard id and remote shard id are the same",
);
}
Self {
shard_id,
wrapped_shard,
remote_shard,
resharding_hash_ring,
update_lock: Mutex::new(()),
}
}
/// Create payload indexes in the remote shard same as in the wrapped shard.
///
/// # Cancel safety
///
/// This method is cancel safe.
pub async fn transfer_indexes(&self) -> CollectionResult<()> {
let _update_lock = self.update_lock.lock().await;
for (index_key, index_type) in self.wrapped_shard.info().await?.payload_schema {
// TODO: Is cancelling `RemoteShard::update` safe for *receiver*?
self.remote_shard
.update(
// TODO: Assign clock tag!? 🤔
OperationWithClockTag::from(CollectionUpdateOperations::FieldIndexOperation(
FieldIndexOperations::CreateIndex(CreateIndex {
field_name: index_key,
field_schema: Some(index_type.try_into()?),
}),
)),
false,
)
.await?;
}
Ok(())
}
/// Move batch of points to the remote shard.
/// Returns an offset of the next batch to be transferred.
///
/// # Cancel safety
///
/// This method is cancel safe.
pub async fn transfer_batch(
&self,
offset: Option<PointIdType>,
batch_size: usize,
hashring_filter: Option<&HashRingRouter>,
merge_points: bool,
runtime_handle: &Handle,
) -> CollectionResult<Option<PointIdType>> {
debug_assert!(batch_size > 0);
let limit = batch_size + 1;
let _update_lock = self.update_lock.lock().await;
let mut batch = self
.wrapped_shard
.scroll_by(
offset,
limit,
&WithPayloadInterface::Bool(true),
&true.into(),
None,
runtime_handle,
None,
None, // no timeout
)
.await?;
let next_page_offset = if batch.len() < limit {
// This was the last page
None
} else {
// remove extra point, it would be a first point of the next page
Some(batch.pop().unwrap().id)
};
let points: Result<Vec<PointStructPersisted>, String> = batch
.into_iter()
// If using a hashring filter, only transfer points that moved, otherwise transfer all
.filter(|point| {
hashring_filter
.map(|hashring| hashring.is_in_shard(&point.id, self.remote_shard.id))
.unwrap_or(true)
})
.map(PointStructPersisted::try_from)
.collect();
let points = points?;
// Use sync API to leverage potentially existing points
// Normally use SyncPoints, to completely replace everything in the target shard
// For resharding we need to merge points from multiple transfers, requiring a different operation
let point_operation = if !merge_points {
PointOperations::SyncPoints(PointSyncOperation {
from_id: offset,
to_id: next_page_offset,
points,
})
} else {
PointOperations::UpsertPoints(PointInsertOperationsInternal::PointsList(points))
};
let insert_points_operation = CollectionUpdateOperations::PointOperation(point_operation);
// We only need to wait for the last batch.
let wait = next_page_offset.is_none();
// TODO: Is cancelling `RemoteShard::update` safe for *receiver*?
self.remote_shard
.update(OperationWithClockTag::from(insert_points_operation), wait) // TODO: Assign clock tag!? 🤔
.await?;
Ok(next_page_offset)
}
pub fn deconstruct(self) -> (LocalShard, RemoteShard) {
(self.wrapped_shard, self.remote_shard)
}
/// Forward `create_snapshot` to `wrapped_shard`
pub async fn create_snapshot(
&self,
temp_path: &Path,
tar: &tar_ext::BuilderExt,
format: SnapshotFormat,
save_wal: bool,
) -> CollectionResult<()> {
self.wrapped_shard
.create_snapshot(temp_path, tar, format, save_wal)
.await
}
pub async fn on_optimizer_config_update(&self) -> CollectionResult<()> {
self.wrapped_shard.on_optimizer_config_update().await
}
pub fn trigger_optimizers(&self) {
self.wrapped_shard.trigger_optimizers();
}
pub fn get_telemetry_data(&self, detail: TelemetryDetail) -> LocalShardTelemetry {
self.wrapped_shard.get_telemetry_data(detail)
}
pub fn update_tracker(&self) -> &UpdateTracker {
self.wrapped_shard.update_tracker()
}
}
#[async_trait]
impl ShardOperation for ForwardProxyShard {
/// Update `wrapped_shard` while keeping track of the changed points
///
/// # Cancel safety
///
/// This method is *not* cancel safe.
async fn update(
&self,
operation: OperationWithClockTag,
_wait: bool,
) -> CollectionResult<UpdateResult> {
// If we apply `local_shard` update, we *have to* execute `remote_shard` update to completion
// (or we *might* introduce an inconsistency between shards?), so this method is not cancel
// safe.
let _update_lock = self.update_lock.lock().await;
// Shard update is within a write lock scope, because we need a way to block the shard updates
// during the transfer restart and finalization.
// We always have to wait for the result of the update, cause after we release the lock,
// the transfer needs to have access to the latest version of points.
let mut result = self.wrapped_shard.update(operation.clone(), true).await?;
let forward_operation = if let Some(ring) = &self.resharding_hash_ring {
// If `ForwardProxyShard::resharding_hash_ring` is `Some`, we assume that proxy is used
// during *resharding* shard transfer, which forwards points to a remote shard with
// *different* shard ID.
debug_assert_ne!(self.shard_id, self.remote_shard.id);
// Only forward a *part* of the operation that belongs to remote shard.
let op = match operation.operation.split_by_shard(ring) {
OperationToShard::ToAll(op) => Some(op),
OperationToShard::ByShard(by_shard) => by_shard
.into_iter()
.find(|&(shard_id, _)| shard_id == self.remote_shard.id)
.map(|(_, op)| op),
};
// Strip the clock tag from the operation, because clock tags are incompatible between
// different shards.
//
// Even though we expect (and assert) that this whole branch is only executed when
// forwarding to a *different* remote shard, we still handle the case when local and
// remote shards are the same, *just in case*.
//
// In such case `split_by_shard` call above would be a no-op, and we can preserve the
// clock tag.
let tag = if self.shard_id != self.remote_shard.id {
None
} else {
log::warn!(
"ForwardProxyShard contains resharding hashring, \
but wrapped shard id and remote shard id are the same",
);
operation.clock_tag
};
op.map(|op| OperationWithClockTag::new(op, tag))
} else {
// If `ForwardProxyShard::resharding_hash_ring` is `None`, we assume that proxy is used
// during *regular* shard transfer, so operation can be forwarded as-is, without any
// additional handling.
debug_assert_eq!(self.shard_id, self.remote_shard.id);
Some(operation)
};
if let Some(operation) = forward_operation {
let remote_result =
self.remote_shard
.update(operation, false)
.await
.map_err(|err| {
CollectionError::forward_proxy_error(self.remote_shard.peer_id, err)
})?;
// Merge `result` and `remote_result`:
//
// - Pick `clock_tag` with *newer* `clock_tick`
let tick = result.clock_tag.map(|tag| tag.clock_tick);
let remote_tick = remote_result.clock_tag.map(|tag| tag.clock_tick);
if remote_tick > tick || tick.is_none() {
result.clock_tag = remote_result.clock_tag;
}
// - If any node *rejected* the operation, propagate `UpdateStatus::ClockRejected`
if remote_result.status == UpdateStatus::ClockRejected {
result.status = UpdateStatus::ClockRejected;
}
}
Ok(result)
}
/// Forward read-only `scroll_by` to `wrapped_shard`
async fn scroll_by(
&self,
offset: Option<ExtendedPointId>,
limit: usize,
with_payload_interface: &WithPayloadInterface,
with_vector: &WithVector,
filter: Option<&Filter>,
search_runtime_handle: &Handle,
order_by: Option<&OrderBy>,
timeout: Option<Duration>,
) -> CollectionResult<Vec<RecordInternal>> {
let local_shard = &self.wrapped_shard;
local_shard
.scroll_by(
offset,
limit,
with_payload_interface,
with_vector,
filter,
search_runtime_handle,
order_by,
timeout,
)
.await
}
async fn info(&self) -> CollectionResult<CollectionInfo> {
let local_shard = &self.wrapped_shard;
local_shard.info().await
}
async fn core_search(
&self,
request: Arc<CoreSearchRequestBatch>,
search_runtime_handle: &Handle,
timeout: Option<Duration>,
hw_measurement_acc: &HwMeasurementAcc,
) -> CollectionResult<Vec<Vec<ScoredPoint>>> {
let local_shard = &self.wrapped_shard;
local_shard
.core_search(request, search_runtime_handle, timeout, hw_measurement_acc)
.await
}
async fn count(
&self,
request: Arc<CountRequestInternal>,
search_runtime_handle: &Handle,
timeout: Option<Duration>,
hw_measurement_acc: &HwMeasurementAcc,
) -> CollectionResult<CountResult> {
let local_shard = &self.wrapped_shard;
local_shard
.count(request, search_runtime_handle, timeout, hw_measurement_acc)
.await
}
async fn retrieve(
&self,
request: Arc<PointRequestInternal>,
with_payload: &WithPayload,
with_vector: &WithVector,
search_runtime_handle: &Handle,
timeout: Option<Duration>,
) -> CollectionResult<Vec<RecordInternal>> {
let local_shard = &self.wrapped_shard;
local_shard
.retrieve(
request,
with_payload,
with_vector,
search_runtime_handle,
timeout,
)
.await
}
async fn query_batch(
&self,
requests: Arc<Vec<ShardQueryRequest>>,
search_runtime_handle: &Handle,
timeout: Option<Duration>,
hw_measurement_acc: &HwMeasurementAcc,
) -> CollectionResult<Vec<ShardQueryResponse>> {
let local_shard = &self.wrapped_shard;
local_shard
.query_batch(requests, search_runtime_handle, timeout, hw_measurement_acc)
.await
}
async fn facet(
&self,
request: Arc<FacetParams>,
search_runtime_handle: &Handle,
timeout: Option<Duration>,
) -> CollectionResult<FacetResponse> {
let local_shard = &self.wrapped_shard;
local_shard
.facet(request, search_runtime_handle, timeout)
.await
}
}
|