mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-09 14:49:25 +00:00
15f4e75870
* fix(cache): enforce projected entry capacity Refs: rustfs/backlog#1335 Co-Authored-By: heihutu <heihutu@gmail.com> * fix(cache): fence identity budget eviction by generation Refs rustfs/backlog#1334. Co-Authored-By: heihutu <heihutu@gmail.com> * fix(cache): fence clear against concurrent fills Refs rustfs/backlog#1333 Co-Authored-By: heihutu <heihutu@gmail.com> * fix(cache): linearize memory reservation claims Co-Authored-By: heihutu <heihutu@gmail.com> * fix(cache): retain allocation memory claims Co-Authored-By: heihutu <heihutu@gmail.com> * fix(cache): publish memory snapshots by epoch Co-Authored-By: heihutu <heihutu@gmail.com> * fix(cache): coordinate cold object fills Co-Authored-By: heihutu <heihutu@gmail.com> * fix(ecstore): fence metadata cache transition races Co-Authored-By: heihutu <heihutu@gmail.com> --------- Co-authored-by: heihutu <heihutu@gmail.com>
409 lines
23 KiB
Rust
409 lines
23 KiB
Rust
// Copyright 2024 RustFS Team
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use crate::disk::error::DiskError;
|
|
use crate::error::StorageError;
|
|
use std::io;
|
|
use std::time::Instant;
|
|
|
|
pub(crate) const GET_OBJECT_PATH_CODEC_STREAMING: &str = "codec_streaming";
|
|
pub(crate) const GET_OBJECT_PATH_CODEC_STREAMING_LEGACY_ENGINE: &str = "codec_streaming_legacy_engine";
|
|
pub(crate) const GET_OBJECT_PATH_CODEC_STREAMING_RUSTFS_ENGINE: &str = "codec_streaming_rustfs_engine";
|
|
pub(crate) const GET_OBJECT_PATH_EMPTY: &str = "empty";
|
|
pub(crate) const GET_OBJECT_PATH_DIRECT_MEMORY: &str = "direct_memory";
|
|
pub(crate) const GET_OBJECT_PATH_BODY_CACHE: &str = "body_cache";
|
|
pub(crate) const GET_OBJECT_PATH_INLINE_DIRECT: &str = "inline_direct";
|
|
pub(crate) const GET_OBJECT_PATH_LEGACY_DUPLEX: &str = "legacy_duplex";
|
|
pub(crate) const GET_OBJECT_PATH_REMOTE_TRANSITION: &str = "remote_transition";
|
|
pub(crate) const GET_OBJECT_PATH_SET_DISK: &str = "set_disk";
|
|
pub(crate) const GET_DIRECT_MEMORY_SUBPATH_DISK_DATA_BLOCKS: &str = "disk_data_blocks";
|
|
pub(crate) const GET_DIRECT_MEMORY_SUBPATH_INLINE_BUFFERED: &str = "inline_buffered";
|
|
pub(crate) const GET_DIRECT_MEMORY_DECISION_USE: &str = "use";
|
|
pub(crate) const GET_DIRECT_MEMORY_DECISION_FALLBACK: &str = "fallback";
|
|
pub(crate) const GET_DIRECT_MEMORY_REASON_NONE: &str = "none";
|
|
pub(crate) const GET_CODEC_STREAMING_DECISION_USE: &str = "use";
|
|
pub(crate) const GET_CODEC_STREAMING_DECISION_FALLBACK: &str = "fallback";
|
|
pub(crate) const GET_CODEC_STREAMING_REASON_NONE: &str = "none";
|
|
pub(crate) const GET_CODEC_STREAMING_OBJECT_CLASS_PLAIN_SINGLE_PART: &str = "plain_single_part";
|
|
pub(crate) const GET_CODEC_STREAMING_OBJECT_CLASS_RANGE: &str = "range";
|
|
pub(crate) const GET_CODEC_STREAMING_OBJECT_CLASS_ENCRYPTED: &str = "encrypted";
|
|
pub(crate) const GET_CODEC_STREAMING_OBJECT_CLASS_COMPRESSED: &str = "compressed";
|
|
pub(crate) const GET_CODEC_STREAMING_OBJECT_CLASS_REMOTE: &str = "remote";
|
|
pub(crate) const GET_CODEC_STREAMING_OBJECT_CLASS_MULTIPART: &str = "multipart";
|
|
|
|
pub(crate) const GET_STAGE_DECODE: &str = "decode";
|
|
pub(crate) const GET_STAGE_EMIT: &str = "emit";
|
|
pub(crate) const GET_STAGE_FILL: &str = "fill";
|
|
pub(crate) const GET_STAGE_FIRST_BYTE: &str = "first_byte";
|
|
pub(crate) const GET_STAGE_FIRST_METADATA_RESPONSE: &str = "first_metadata_response";
|
|
pub(crate) const GET_STAGE_FIRST_VALID_METADATA_RESPONSE: &str = "first_valid_metadata_response";
|
|
pub(crate) const GET_STAGE_FIRST_SHARD_READ: &str = "first_shard_read";
|
|
pub(crate) const GET_STAGE_FULL_BODY: &str = "full_body";
|
|
pub(crate) const GET_STAGE_INLINE_PREPARE: &str = "inline_prepare";
|
|
pub(crate) const GET_STAGE_LOCK_ACQUIRE: &str = "lock_acquire";
|
|
pub(crate) const GET_STAGE_METADATA: &str = "metadata";
|
|
pub(crate) const GET_STAGE_METADATA_CACHE_LOOKUP: &str = "metadata_cache_lookup";
|
|
pub(crate) const GET_STAGE_METADATA_FANOUT: &str = "metadata_fanout";
|
|
pub(crate) const GET_STAGE_METADATA_RESOLVE: &str = "metadata_resolve";
|
|
pub(crate) const GET_STAGE_OBJECT_INFO: &str = "object_info";
|
|
pub(crate) const GET_STAGE_OUTPUT_LOCK_WAIT: &str = "output_lock_wait";
|
|
pub(crate) const GET_STAGE_OUTPUT_POLL: &str = "output_poll";
|
|
pub(crate) const GET_STAGE_PATH_DECISION: &str = "path_decision";
|
|
pub(crate) const GET_STAGE_QUORUM_REACHED: &str = "quorum_reached";
|
|
pub(crate) const GET_STAGE_RANGE: &str = "range";
|
|
pub(crate) const GET_STAGE_READER_SETUP: &str = "reader_setup";
|
|
pub(crate) const GET_STAGE_READER_SETUP_DROP_PENDING: &str = "reader_setup_drop_pending";
|
|
pub(crate) const GET_STAGE_READER_SETUP_SCHEDULE: &str = "reader_setup_schedule";
|
|
pub(crate) const GET_STAGE_READER_SETUP_WAIT_QUORUM: &str = "reader_setup_wait_quorum";
|
|
pub(crate) const GET_STAGE_READER_OPEN_MMAP_COPY_FALLBACK: &str = "reader_open_mmap_copy_fallback";
|
|
pub(crate) const GET_STAGE_READER_OPEN_MMAP_COPY_SUCCESS: &str = "reader_open_mmap_copy_success";
|
|
pub(crate) const GET_STAGE_READER_OPEN_STREAM: &str = "reader_open_stream";
|
|
pub(crate) const GET_STAGE_READER_MMAP_ACCESS_CHECK: &str = "reader_mmap_access_check";
|
|
pub(crate) const GET_STAGE_READER_MMAP_BLOCKING_TASK: &str = "reader_mmap_blocking_task";
|
|
pub(crate) const GET_STAGE_READER_MMAP_BLOCKING_WAIT: &str = "reader_mmap_blocking_wait";
|
|
pub(crate) const GET_STAGE_READER_MMAP_COPY_BUFFER: &str = "reader_mmap_copy_buffer";
|
|
pub(crate) const GET_STAGE_READER_MMAP_DIRECT_READ_COPY: &str = "reader_mmap_direct_read_copy";
|
|
pub(crate) const GET_STAGE_READER_MMAP_FILE_OPEN: &str = "reader_mmap_file_open";
|
|
pub(crate) const GET_STAGE_READER_MMAP_MAP: &str = "reader_mmap_map";
|
|
pub(crate) const GET_STAGE_READER_MMAP_METADATA_LOOKUP: &str = "reader_mmap_metadata_lookup";
|
|
pub(crate) const GET_STAGE_READER_MMAP_METADATA_VALIDATE: &str = "reader_mmap_metadata_validate";
|
|
pub(crate) const GET_STAGE_READER_MMAP_PATH_RESOLVE: &str = "reader_mmap_path_resolve";
|
|
pub(crate) const GET_STAGE_READER_STREAM_FIRST_READ: &str = "reader_stream_first_read";
|
|
pub(crate) const GET_STAGE_READER_TASK_BITROT_READER_INIT: &str = "reader_task_bitrot_reader_init";
|
|
pub(crate) const GET_STAGE_READER_TASK_FILE_OPEN: &str = "reader_task_file_open";
|
|
pub(crate) const GET_STAGE_READER_TASK_READER_CONSTRUCTION: &str = "reader_task_reader_construction";
|
|
pub(crate) const GET_STAGE_RECONSTRUCT: &str = "reconstruct";
|
|
pub(crate) const GET_STAGE_RESPONSE_HANDOFF: &str = "response_handoff";
|
|
pub(crate) const GET_STAGE_SLOWEST_METADATA_RESPONSE: &str = "slowest_metadata_response";
|
|
pub(crate) const GET_STAGE_STRIPE_READ: &str = "stripe_read";
|
|
pub(crate) const GET_STAGE_STRIPE_READ_FIRST_SHARD: &str = "stripe_read_first_shard";
|
|
pub(crate) const GET_STAGE_STRIPE_READ_QUORUM: &str = "stripe_read_quorum";
|
|
pub(crate) const GET_STAGE_BITROT_VERIFY: &str = "bitrot_verify";
|
|
|
|
pub(crate) const GET_READER_BUFFER_OUTPUT: &str = "output";
|
|
pub(crate) const GET_READER_BUFFER_PREFETCH: &str = "prefetch";
|
|
pub(crate) const GET_READER_PREFETCH_DIRECT: &str = "direct";
|
|
pub(crate) const GET_READER_PREFETCH_EOF: &str = "eof";
|
|
pub(crate) const GET_READER_PREFETCH_ERROR_DEFERRED: &str = "error_deferred";
|
|
pub(crate) const GET_READER_PREFETCH_ERROR_IMMEDIATE: &str = "error_immediate";
|
|
pub(crate) const GET_READER_PREFETCH_STORED: &str = "stored";
|
|
pub(crate) const GET_READER_POLL_PENDING: &str = "pending";
|
|
pub(crate) const GET_READER_POLL_READY_DATA: &str = "ready_data";
|
|
pub(crate) const GET_READER_POLL_READY_EMPTY: &str = "ready_empty";
|
|
pub(crate) const GET_READER_POLL_READY_ERROR: &str = "ready_error";
|
|
pub(crate) const GET_SHARD_READ_OUTCOME_ERROR: &str = "error";
|
|
pub(crate) const GET_SHARD_READ_OUTCOME_MISSING: &str = "missing";
|
|
pub(crate) const GET_SHARD_READ_OUTCOME_SUCCESS: &str = "success";
|
|
pub(crate) const GET_SHARD_READ_COST_LOCAL: &str = "local";
|
|
pub(crate) const GET_SHARD_READ_COST_REMOTE: &str = "remote";
|
|
pub(crate) const GET_SHARD_READ_COST_SAME_NODE: &str = "same_node";
|
|
pub(crate) const GET_SHARD_READ_COST_UNKNOWN: &str = "unknown";
|
|
pub(crate) const GET_SHARD_READ_ERROR_MISSING: &str = "missing";
|
|
pub(crate) const GET_SHARD_READ_ERROR_NONE: &str = "none";
|
|
pub(crate) const GET_SHARD_ROLE_DATA: &str = "data";
|
|
pub(crate) const GET_SHARD_ROLE_PARITY: &str = "parity";
|
|
|
|
pub(crate) const GET_METADATA_RESPONSE_CORRUPT: &str = "corrupt";
|
|
pub(crate) const GET_METADATA_RESPONSE_DISK_NOT_FOUND: &str = "disk_not_found";
|
|
pub(crate) const GET_METADATA_RESPONSE_ERROR: &str = "error";
|
|
pub(crate) const GET_METADATA_RESPONSE_IGNORED: &str = "ignored";
|
|
pub(crate) const GET_METADATA_RESPONSE_NOT_FOUND: &str = "not_found";
|
|
pub(crate) const GET_METADATA_RESPONSE_TIMEOUT: &str = "timeout";
|
|
pub(crate) const GET_METADATA_RESPONSE_VALID: &str = "valid";
|
|
pub(crate) const GET_METADATA_RESPONSE_VERSION_NOT_FOUND: &str = "version_not_found";
|
|
pub(crate) const GET_METADATA_CACHE_DECISION_HIT: &str = "hit";
|
|
pub(crate) const GET_METADATA_CACHE_DECISION_MISS: &str = "miss";
|
|
pub(crate) const GET_METADATA_CACHE_DECISION_REJECT: &str = "reject";
|
|
pub(crate) const GET_METADATA_CACHE_DECISION_SKIP: &str = "skip";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_DATA_MOVEMENT: &str = "data_movement";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_DELETE_MARKER: &str = "delete_marker";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_DIST_ERASURE: &str = "dist_erasure";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_INCL_FREE_VERSIONS: &str = "incl_free_versions";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_INSUFFICIENT_CACHED_QUORUM: &str = "insufficient_cached_quorum";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_META_BUCKET: &str = "meta_bucket";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_NO_LOCK: &str = "no_lock";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_NOT_FOUND_OR_EXPIRED: &str = "not_found_or_expired";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_NOT_READ_DATA: &str = "not_read_data";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_PART_NUMBER: &str = "part_number";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_RAW_DATA_MOVEMENT_READ: &str = "raw_data_movement_read";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_STALE_PUBLICATION: &str = "stale_publication";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_USABLE: &str = "usable";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_VERSION_ID: &str = "version_id";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_VERSION_SUSPENDED: &str = "version_suspended";
|
|
pub(crate) const GET_METADATA_CACHE_REASON_VERSIONED: &str = "versioned";
|
|
pub(crate) const GET_METADATA_EARLY_STOP_REASON_CONFLICTING_METADATA: &str = "conflicting_metadata";
|
|
pub(crate) const GET_METADATA_EARLY_STOP_REASON_DELETE_MARKER: &str = "delete_marker";
|
|
pub(crate) const GET_METADATA_EARLY_STOP_REASON_ERROR: &str = "error";
|
|
pub(crate) const GET_METADATA_EARLY_STOP_REASON_INSUFFICIENT_QUORUM: &str = "insufficient_quorum";
|
|
pub(crate) const GET_METADATA_EARLY_STOP_REASON_NOT_FOUND: &str = "not_found";
|
|
pub(crate) const GET_METADATA_EARLY_STOP_REASON_UNSAFE_REQUEST: &str = "unsafe_request";
|
|
pub(crate) const GET_METADATA_EARLY_STOP_REASON_VALID_QUORUM: &str = "valid_quorum";
|
|
pub(crate) const GET_METADATA_EARLY_STOP_REASON_VERSION_NOT_FOUND: &str = "version_not_found";
|
|
pub(crate) const GET_METADATA_EARLY_STOP_REASON_VERSION_MATCH_QUORUM: &str = "version_match_quorum";
|
|
|
|
/// Early-stop active state labels
|
|
pub(crate) const EARLY_STOP_ACTIVE_HIT: &str = "hit";
|
|
pub(crate) const EARLY_STOP_ACTIVE_MISS: &str = "miss";
|
|
pub(crate) const EARLY_STOP_ACTIVE_DISABLED: &str = "disabled";
|
|
|
|
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
|
|
pub(crate) enum GetObjectFailureReason {
|
|
BitrotMismatch,
|
|
DecodeError,
|
|
DownstreamClosed,
|
|
Io,
|
|
RangeOrLengthInvalid,
|
|
ReadQuorum,
|
|
ShortRead,
|
|
Timeout,
|
|
Unknown,
|
|
}
|
|
|
|
impl GetObjectFailureReason {
|
|
pub(crate) const fn as_str(self) -> &'static str {
|
|
match self {
|
|
Self::BitrotMismatch => "bitrot_mismatch",
|
|
Self::DecodeError => "decode_error",
|
|
Self::DownstreamClosed => "downstream_closed",
|
|
Self::Io => "io",
|
|
Self::RangeOrLengthInvalid => "range_or_length_invalid",
|
|
Self::ReadQuorum => "read_quorum",
|
|
Self::ShortRead => "short_read",
|
|
Self::Timeout => "timeout",
|
|
Self::Unknown => "unknown",
|
|
}
|
|
}
|
|
}
|
|
|
|
pub(crate) fn classify_storage_error(err: &StorageError) -> GetObjectFailureReason {
|
|
match err {
|
|
StorageError::ErasureReadQuorum | StorageError::InsufficientReadQuorum(_, _) => GetObjectFailureReason::ReadQuorum,
|
|
StorageError::FileCorrupt => GetObjectFailureReason::BitrotMismatch,
|
|
StorageError::InvalidRangeSpec(_) => GetObjectFailureReason::RangeOrLengthInvalid,
|
|
StorageError::Io(io_err) => classify_io_error(io_err),
|
|
_ => GetObjectFailureReason::Unknown,
|
|
}
|
|
}
|
|
|
|
pub(crate) fn classify_disk_error(err: &DiskError) -> GetObjectFailureReason {
|
|
match err {
|
|
DiskError::ErasureReadQuorum => GetObjectFailureReason::ReadQuorum,
|
|
DiskError::FileCorrupt | DiskError::PartMissingOrCorrupt => GetObjectFailureReason::BitrotMismatch,
|
|
DiskError::LessData => GetObjectFailureReason::ShortRead,
|
|
DiskError::Timeout => GetObjectFailureReason::Timeout,
|
|
DiskError::Io(io_err) => classify_io_error(io_err),
|
|
_ => GetObjectFailureReason::Unknown,
|
|
}
|
|
}
|
|
|
|
pub(crate) fn classify_io_error(err: &io::Error) -> GetObjectFailureReason {
|
|
match err.kind() {
|
|
io::ErrorKind::BrokenPipe | io::ErrorKind::ConnectionReset => GetObjectFailureReason::DownstreamClosed,
|
|
io::ErrorKind::TimedOut => GetObjectFailureReason::Timeout,
|
|
io::ErrorKind::UnexpectedEof => GetObjectFailureReason::ShortRead,
|
|
io::ErrorKind::InvalidInput | io::ErrorKind::InvalidData => GetObjectFailureReason::RangeOrLengthInvalid,
|
|
_ => GetObjectFailureReason::Io,
|
|
}
|
|
}
|
|
|
|
pub(crate) fn record_get_object_pipeline_failure(stage: &'static str, reason: GetObjectFailureReason) {
|
|
rustfs_io_metrics::record_get_object_pipeline_failure(stage, reason.as_str());
|
|
}
|
|
|
|
pub(crate) fn record_get_object_pipeline_failure_for_path(
|
|
path: &'static str,
|
|
stage: &'static str,
|
|
reason: GetObjectFailureReason,
|
|
) {
|
|
rustfs_io_metrics::record_get_object_pipeline_failure_for_path(path, stage, reason.as_str());
|
|
}
|
|
|
|
#[inline(always)]
|
|
pub(crate) fn get_stage_timer_if_enabled(stage_metrics_enabled: bool) -> Option<Instant> {
|
|
stage_metrics_enabled.then(Instant::now)
|
|
}
|
|
|
|
#[inline(always)]
|
|
pub(crate) fn record_get_stage_duration_if_enabled(path: &'static str, stage: &'static str, started_at: Option<Instant>) {
|
|
if let Some(started_at) = started_at {
|
|
rustfs_io_metrics::record_get_object_stage_duration(path, stage, started_at.elapsed().as_secs_f64());
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn classifies_storage_errors_for_get_pipeline() {
|
|
assert_eq!(
|
|
classify_storage_error(&StorageError::ErasureReadQuorum),
|
|
GetObjectFailureReason::ReadQuorum
|
|
);
|
|
assert_eq!(
|
|
classify_storage_error(&StorageError::InsufficientReadQuorum("bucket".to_string(), "object".to_string(),)),
|
|
GetObjectFailureReason::ReadQuorum
|
|
);
|
|
assert_eq!(classify_storage_error(&StorageError::FileCorrupt), GetObjectFailureReason::BitrotMismatch);
|
|
assert_eq!(
|
|
classify_storage_error(&StorageError::InvalidRangeSpec("bad range".to_string())),
|
|
GetObjectFailureReason::RangeOrLengthInvalid
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn classifies_disk_errors_for_get_pipeline() {
|
|
assert_eq!(classify_disk_error(&DiskError::ErasureReadQuorum), GetObjectFailureReason::ReadQuorum);
|
|
assert_eq!(classify_disk_error(&DiskError::FileCorrupt), GetObjectFailureReason::BitrotMismatch);
|
|
assert_eq!(
|
|
classify_disk_error(&DiskError::PartMissingOrCorrupt),
|
|
GetObjectFailureReason::BitrotMismatch
|
|
);
|
|
assert_eq!(classify_disk_error(&DiskError::LessData), GetObjectFailureReason::ShortRead);
|
|
assert_eq!(classify_disk_error(&DiskError::Timeout), GetObjectFailureReason::Timeout);
|
|
}
|
|
|
|
#[test]
|
|
fn classifies_io_errors_for_get_pipeline() {
|
|
let cases = [
|
|
(io::ErrorKind::BrokenPipe, GetObjectFailureReason::DownstreamClosed),
|
|
(io::ErrorKind::ConnectionReset, GetObjectFailureReason::DownstreamClosed),
|
|
(io::ErrorKind::TimedOut, GetObjectFailureReason::Timeout),
|
|
(io::ErrorKind::UnexpectedEof, GetObjectFailureReason::ShortRead),
|
|
(io::ErrorKind::InvalidInput, GetObjectFailureReason::RangeOrLengthInvalid),
|
|
(io::ErrorKind::InvalidData, GetObjectFailureReason::RangeOrLengthInvalid),
|
|
(io::ErrorKind::Other, GetObjectFailureReason::Io),
|
|
];
|
|
|
|
for (kind, expected) in cases {
|
|
let err = io::Error::from(kind);
|
|
assert_eq!(classify_io_error(&err), expected, "kind={kind:?}");
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn keeps_metric_labels_stable() {
|
|
assert_eq!(GetObjectFailureReason::ReadQuorum.as_str(), "read_quorum");
|
|
assert_eq!(GetObjectFailureReason::ShortRead.as_str(), "short_read");
|
|
assert_eq!(GetObjectFailureReason::DownstreamClosed.as_str(), "downstream_closed");
|
|
assert_eq!(GetObjectFailureReason::BitrotMismatch.as_str(), "bitrot_mismatch");
|
|
assert_eq!(GetObjectFailureReason::DecodeError.as_str(), "decode_error");
|
|
assert_eq!(GET_READER_BUFFER_OUTPUT, "output");
|
|
assert_eq!(GET_READER_BUFFER_PREFETCH, "prefetch");
|
|
assert_eq!(GET_OBJECT_PATH_CODEC_STREAMING_LEGACY_ENGINE, "codec_streaming_legacy_engine");
|
|
assert_eq!(GET_OBJECT_PATH_CODEC_STREAMING_RUSTFS_ENGINE, "codec_streaming_rustfs_engine");
|
|
assert_eq!(GET_DIRECT_MEMORY_DECISION_USE, "use");
|
|
assert_eq!(GET_DIRECT_MEMORY_DECISION_FALLBACK, "fallback");
|
|
assert_eq!(GET_DIRECT_MEMORY_REASON_NONE, "none");
|
|
assert_eq!(GET_CODEC_STREAMING_DECISION_USE, "use");
|
|
assert_eq!(GET_CODEC_STREAMING_DECISION_FALLBACK, "fallback");
|
|
assert_eq!(GET_CODEC_STREAMING_REASON_NONE, "none");
|
|
assert_eq!(GET_CODEC_STREAMING_OBJECT_CLASS_PLAIN_SINGLE_PART, "plain_single_part");
|
|
assert_eq!(GET_CODEC_STREAMING_OBJECT_CLASS_RANGE, "range");
|
|
assert_eq!(GET_CODEC_STREAMING_OBJECT_CLASS_ENCRYPTED, "encrypted");
|
|
assert_eq!(GET_CODEC_STREAMING_OBJECT_CLASS_COMPRESSED, "compressed");
|
|
assert_eq!(GET_CODEC_STREAMING_OBJECT_CLASS_REMOTE, "remote");
|
|
assert_eq!(GET_CODEC_STREAMING_OBJECT_CLASS_MULTIPART, "multipart");
|
|
assert_eq!(GET_OBJECT_PATH_SET_DISK, "set_disk");
|
|
assert_eq!(GET_READER_PREFETCH_DIRECT, "direct");
|
|
assert_eq!(GET_READER_PREFETCH_STORED, "stored");
|
|
assert_eq!(GET_READER_PREFETCH_EOF, "eof");
|
|
assert_eq!(GET_READER_PREFETCH_ERROR_DEFERRED, "error_deferred");
|
|
assert_eq!(GET_READER_PREFETCH_ERROR_IMMEDIATE, "error_immediate");
|
|
assert_eq!(GET_READER_POLL_PENDING, "pending");
|
|
assert_eq!(GET_READER_POLL_READY_DATA, "ready_data");
|
|
assert_eq!(GET_READER_POLL_READY_EMPTY, "ready_empty");
|
|
assert_eq!(GET_READER_POLL_READY_ERROR, "ready_error");
|
|
assert_eq!(GET_STAGE_DECODE, "decode");
|
|
assert_eq!(GET_STAGE_EMIT, "emit");
|
|
assert_eq!(GET_STAGE_FILL, "fill");
|
|
assert_eq!(GET_STAGE_FIRST_BYTE, "first_byte");
|
|
assert_eq!(GET_STAGE_FIRST_METADATA_RESPONSE, "first_metadata_response");
|
|
assert_eq!(GET_STAGE_FIRST_VALID_METADATA_RESPONSE, "first_valid_metadata_response");
|
|
assert_eq!(GET_STAGE_FIRST_SHARD_READ, "first_shard_read");
|
|
assert_eq!(GET_STAGE_FULL_BODY, "full_body");
|
|
assert_eq!(GET_STAGE_INLINE_PREPARE, "inline_prepare");
|
|
assert_eq!(GET_STAGE_LOCK_ACQUIRE, "lock_acquire");
|
|
assert_eq!(GET_STAGE_METADATA, "metadata");
|
|
assert_eq!(GET_STAGE_METADATA_CACHE_LOOKUP, "metadata_cache_lookup");
|
|
assert_eq!(GET_STAGE_METADATA_FANOUT, "metadata_fanout");
|
|
assert_eq!(GET_STAGE_METADATA_RESOLVE, "metadata_resolve");
|
|
assert_eq!(GET_STAGE_OBJECT_INFO, "object_info");
|
|
assert_eq!(GET_STAGE_OUTPUT_LOCK_WAIT, "output_lock_wait");
|
|
assert_eq!(GET_STAGE_OUTPUT_POLL, "output_poll");
|
|
assert_eq!(GET_STAGE_PATH_DECISION, "path_decision");
|
|
assert_eq!(GET_STAGE_QUORUM_REACHED, "quorum_reached");
|
|
assert_eq!(GET_STAGE_RANGE, "range");
|
|
assert_eq!(GET_STAGE_READER_SETUP, "reader_setup");
|
|
assert_eq!(GET_STAGE_RECONSTRUCT, "reconstruct");
|
|
assert_eq!(GET_STAGE_RESPONSE_HANDOFF, "response_handoff");
|
|
assert_eq!(GET_STAGE_SLOWEST_METADATA_RESPONSE, "slowest_metadata_response");
|
|
assert_eq!(GET_STAGE_STRIPE_READ, "stripe_read");
|
|
assert_eq!(GET_STAGE_STRIPE_READ_FIRST_SHARD, "stripe_read_first_shard");
|
|
assert_eq!(GET_STAGE_STRIPE_READ_QUORUM, "stripe_read_quorum");
|
|
assert_eq!(GET_STAGE_BITROT_VERIFY, "bitrot_verify");
|
|
assert_eq!(GET_SHARD_READ_OUTCOME_ERROR, "error");
|
|
assert_eq!(GET_SHARD_READ_OUTCOME_MISSING, "missing");
|
|
assert_eq!(GET_SHARD_READ_OUTCOME_SUCCESS, "success");
|
|
assert_eq!(GET_SHARD_READ_COST_LOCAL, "local");
|
|
assert_eq!(GET_SHARD_READ_COST_REMOTE, "remote");
|
|
assert_eq!(GET_SHARD_READ_COST_SAME_NODE, "same_node");
|
|
assert_eq!(GET_SHARD_READ_COST_UNKNOWN, "unknown");
|
|
assert_eq!(GET_SHARD_READ_ERROR_MISSING, "missing");
|
|
assert_eq!(GET_SHARD_READ_ERROR_NONE, "none");
|
|
assert_eq!(GET_SHARD_ROLE_DATA, "data");
|
|
assert_eq!(GET_SHARD_ROLE_PARITY, "parity");
|
|
assert_eq!(GET_METADATA_RESPONSE_CORRUPT, "corrupt");
|
|
assert_eq!(GET_METADATA_RESPONSE_DISK_NOT_FOUND, "disk_not_found");
|
|
assert_eq!(GET_METADATA_RESPONSE_ERROR, "error");
|
|
assert_eq!(GET_METADATA_RESPONSE_IGNORED, "ignored");
|
|
assert_eq!(GET_METADATA_RESPONSE_NOT_FOUND, "not_found");
|
|
assert_eq!(GET_METADATA_RESPONSE_TIMEOUT, "timeout");
|
|
assert_eq!(GET_METADATA_RESPONSE_VALID, "valid");
|
|
assert_eq!(GET_METADATA_RESPONSE_VERSION_NOT_FOUND, "version_not_found");
|
|
assert_eq!(GET_METADATA_CACHE_DECISION_HIT, "hit");
|
|
assert_eq!(GET_METADATA_CACHE_DECISION_MISS, "miss");
|
|
assert_eq!(GET_METADATA_CACHE_DECISION_REJECT, "reject");
|
|
assert_eq!(GET_METADATA_CACHE_DECISION_SKIP, "skip");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_DATA_MOVEMENT, "data_movement");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_DELETE_MARKER, "delete_marker");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_DIST_ERASURE, "dist_erasure");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_INCL_FREE_VERSIONS, "incl_free_versions");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_INSUFFICIENT_CACHED_QUORUM, "insufficient_cached_quorum");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_META_BUCKET, "meta_bucket");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_NO_LOCK, "no_lock");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_NOT_FOUND_OR_EXPIRED, "not_found_or_expired");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_NOT_READ_DATA, "not_read_data");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_PART_NUMBER, "part_number");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_RAW_DATA_MOVEMENT_READ, "raw_data_movement_read");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_STALE_PUBLICATION, "stale_publication");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_USABLE, "usable");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_VERSION_ID, "version_id");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_VERSION_SUSPENDED, "version_suspended");
|
|
assert_eq!(GET_METADATA_CACHE_REASON_VERSIONED, "versioned");
|
|
assert_eq!(GET_METADATA_EARLY_STOP_REASON_CONFLICTING_METADATA, "conflicting_metadata");
|
|
assert_eq!(GET_METADATA_EARLY_STOP_REASON_DELETE_MARKER, "delete_marker");
|
|
assert_eq!(GET_METADATA_EARLY_STOP_REASON_ERROR, "error");
|
|
assert_eq!(GET_METADATA_EARLY_STOP_REASON_INSUFFICIENT_QUORUM, "insufficient_quorum");
|
|
assert_eq!(GET_METADATA_EARLY_STOP_REASON_NOT_FOUND, "not_found");
|
|
assert_eq!(GET_METADATA_EARLY_STOP_REASON_UNSAFE_REQUEST, "unsafe_request");
|
|
assert_eq!(GET_METADATA_EARLY_STOP_REASON_VALID_QUORUM, "valid_quorum");
|
|
assert_eq!(GET_METADATA_EARLY_STOP_REASON_VERSION_NOT_FOUND, "version_not_found");
|
|
assert_eq!(GET_METADATA_EARLY_STOP_REASON_VERSION_MATCH_QUORUM, "version_match_quorum");
|
|
assert_eq!(EARLY_STOP_ACTIVE_HIT, "hit");
|
|
assert_eq!(EARLY_STOP_ACTIVE_MISS, "miss");
|
|
assert_eq!(EARLY_STOP_ACTIVE_DISABLED, "disabled");
|
|
}
|
|
}
|