mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-08 22:33:22 +00:00
4c83669c30
* 'main' of github.com:rustfs/rustfs: fix(ecstore): replace unwrap() with proper error handling in api_get_object_attributes (#729 batch 11) (#3991) fix(ecstore): improve expect() messages in admin_server_info (#729 batch 9) (#3990) fix(server): improve expect() messages in layer.rs (#729 batch 8) (#3989) fix(ecstore): improve expect() messages in replication_resyncer (#729 batch 7) (#3988) fix(admin): improve expect() messages in remaining admin handlers (#729 batch 6) (#3987) fix(admin): improve expect() messages in policies handler (#729 batch 5) (#3986) fix(admin): improve expect() messages in user handler (#729 batch 4) (#3985) fix(admin): replace unwrap() with safe pattern in bucket_meta handler (#729 batch 3) (#3984) feat(get): harden codec streaming rollout (#3981) fix(admin): replace unwrap() with proper error handling in tier handler (#729 batch 2) (#3983) # Conflicts: # crates/ecstore/src/set_disk/mod.rs
325 lines
17 KiB
Rust
325 lines
17 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_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_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_METADATA: &str = "metadata";
|
|
pub(crate) const GET_STAGE_METADATA_FANOUT: &str = "metadata_fanout";
|
|
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_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_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_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_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_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_METADATA, "metadata");
|
|
assert_eq!(GET_STAGE_METADATA_FANOUT, "metadata_fanout");
|
|
assert_eq!(GET_STAGE_OUTPUT_LOCK_WAIT, "output_lock_wait");
|
|
assert_eq!(GET_STAGE_OUTPUT_POLL, "output_poll");
|
|
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_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");
|
|
}
|
|
}
|