mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-28 09:08:58 +00:00
e0bac66941
* fix(targets): unify runtime health snapshots * fix(targets): stabilize health snapshot merge * fix(admin): import runtime health test type
312 lines
11 KiB
Rust
312 lines
11 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::{Event, NotificationTargetMetricSnapshot, notifier::SharedNotifyTargetList};
|
|
use rustfs_targets::{ReplayWorkerManager, RuntimeTargetHealthSnapshot, SharedTarget, arn::TargetID};
|
|
use std::sync::Arc;
|
|
use tokio::sync::RwLock;
|
|
|
|
#[derive(Clone)]
|
|
pub struct NotifyRuntimeView {
|
|
target_list: SharedNotifyTargetList,
|
|
stream_cancellers: Arc<RwLock<ReplayWorkerManager>>,
|
|
}
|
|
|
|
impl NotifyRuntimeView {
|
|
pub fn new(target_list: SharedNotifyTargetList, stream_cancellers: Arc<RwLock<ReplayWorkerManager>>) -> Self {
|
|
Self {
|
|
target_list,
|
|
stream_cancellers,
|
|
}
|
|
}
|
|
|
|
pub async fn get_active_targets(&self) -> Vec<TargetID> {
|
|
self.target_list.read().await.keys()
|
|
}
|
|
|
|
pub fn get_all_targets(&self) -> SharedNotifyTargetList {
|
|
self.target_list.clone()
|
|
}
|
|
|
|
pub async fn get_target_values(&self) -> Vec<SharedTarget<Event>> {
|
|
self.target_list.read().await.values()
|
|
}
|
|
|
|
pub async fn snapshot_target_metrics(&self) -> Vec<NotificationTargetMetricSnapshot> {
|
|
self.target_list
|
|
.read()
|
|
.await
|
|
.runtime_snapshots()
|
|
.into_iter()
|
|
.map(|snapshot| NotificationTargetMetricSnapshot {
|
|
failed_messages: snapshot.failed_messages,
|
|
failed_store_length: snapshot.failed_store_length,
|
|
queue_length: snapshot.queue_length,
|
|
target_id: snapshot.target_id,
|
|
target_type: snapshot.target_type,
|
|
total_messages: snapshot.total_messages,
|
|
})
|
|
.collect()
|
|
}
|
|
|
|
pub async fn snapshot_target_health(&self) -> Vec<RuntimeTargetHealthSnapshot> {
|
|
let targets = self.target_list.read().await.values();
|
|
rustfs_targets::health_snapshots_for_targets(targets).await
|
|
}
|
|
|
|
pub async fn runtime_status_snapshot(&self) -> rustfs_targets::RuntimeStatusSnapshot {
|
|
let replay_workers = self.stream_cancellers.read().await;
|
|
let target_list = self.target_list.read().await;
|
|
target_list.runtime_status_snapshot(&replay_workers)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::NotifyRuntimeView;
|
|
use crate::{Event, notifier::TargetList};
|
|
use async_trait::async_trait;
|
|
use rustfs_targets::arn::TargetID;
|
|
use rustfs_targets::store::{Key, Store};
|
|
use rustfs_targets::target::{EntityTarget, QueuedPayload, QueuedPayloadMeta, TargetDeliverySnapshot};
|
|
use rustfs_targets::{ReplayWorkerManager, StoreError, Target, TargetError};
|
|
use std::sync::{
|
|
Arc,
|
|
atomic::{AtomicU64, Ordering},
|
|
};
|
|
use tokio::sync::{Notify, RwLock};
|
|
|
|
#[derive(Clone)]
|
|
struct TestTarget {
|
|
active: bool,
|
|
enabled: bool,
|
|
failed_messages: Arc<AtomicU64>,
|
|
failed_store_length: u64,
|
|
id: TargetID,
|
|
health_started: Option<Arc<Notify>>,
|
|
health_release: Option<Arc<Notify>>,
|
|
total_messages: Arc<AtomicU64>,
|
|
}
|
|
|
|
impl TestTarget {
|
|
fn new(id: &str, name: &str) -> Self {
|
|
Self {
|
|
active: true,
|
|
enabled: true,
|
|
failed_messages: Arc::new(AtomicU64::new(0)),
|
|
failed_store_length: 0,
|
|
id: TargetID::new(id.to_string(), name.to_string()),
|
|
health_started: None,
|
|
health_release: None,
|
|
total_messages: Arc::new(AtomicU64::new(0)),
|
|
}
|
|
}
|
|
|
|
fn with_active(mut self, active: bool) -> Self {
|
|
self.active = active;
|
|
self
|
|
}
|
|
|
|
fn with_failed_store_length(mut self, failed_store_length: u64) -> Self {
|
|
self.failed_store_length = failed_store_length;
|
|
self
|
|
}
|
|
|
|
fn with_enabled(mut self, enabled: bool) -> Self {
|
|
self.enabled = enabled;
|
|
self
|
|
}
|
|
|
|
fn with_health_gate(mut self, started: Arc<Notify>, release: Arc<Notify>) -> Self {
|
|
self.health_started = Some(started);
|
|
self.health_release = Some(release);
|
|
self
|
|
}
|
|
|
|
fn record_successes(&self, count: u64) {
|
|
self.total_messages.store(count, Ordering::Relaxed);
|
|
}
|
|
|
|
fn record_failures(&self, count: u64) {
|
|
self.failed_messages.store(count, Ordering::Relaxed);
|
|
}
|
|
}
|
|
|
|
#[async_trait]
|
|
impl<E> Target<E> for TestTarget
|
|
where
|
|
E: rustfs_targets::PluginEvent,
|
|
{
|
|
fn id(&self) -> TargetID {
|
|
self.id.clone()
|
|
}
|
|
|
|
async fn is_active(&self) -> Result<bool, TargetError> {
|
|
if let (Some(started), Some(release)) = (&self.health_started, &self.health_release) {
|
|
started.notify_one();
|
|
release.notified().await;
|
|
}
|
|
Ok(self.active)
|
|
}
|
|
|
|
async fn save(&self, _event: Arc<EntityTarget<E>>) -> Result<(), TargetError> {
|
|
Ok(())
|
|
}
|
|
|
|
async fn send_raw_from_store(&self, _key: Key, _body: Vec<u8>, _meta: QueuedPayloadMeta) -> Result<(), TargetError> {
|
|
Ok(())
|
|
}
|
|
|
|
async fn close(&self) -> Result<(), TargetError> {
|
|
Ok(())
|
|
}
|
|
|
|
fn store(&self) -> Option<&(dyn Store<QueuedPayload, Error = StoreError, Key = Key> + Send + Sync)> {
|
|
None
|
|
}
|
|
|
|
fn clone_dyn(&self) -> Box<dyn Target<E> + Send + Sync> {
|
|
Box::new(self.clone())
|
|
}
|
|
|
|
async fn init(&self) -> Result<(), TargetError> {
|
|
Ok(())
|
|
}
|
|
|
|
fn is_enabled(&self) -> bool {
|
|
self.enabled
|
|
}
|
|
|
|
fn delivery_snapshot(&self) -> TargetDeliverySnapshot {
|
|
TargetDeliverySnapshot {
|
|
failed_messages: self.failed_messages.load(Ordering::Relaxed),
|
|
failed_store_length: self.failed_store_length,
|
|
queue_length: 0,
|
|
total_messages: self.total_messages.load(Ordering::Relaxed),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn runtime_view_reports_empty_runtime_queries() {
|
|
let runtime_view = NotifyRuntimeView::new(
|
|
Arc::new(RwLock::new(TargetList::new())),
|
|
Arc::new(RwLock::new(ReplayWorkerManager::new())),
|
|
);
|
|
|
|
assert!(runtime_view.get_active_targets().await.is_empty());
|
|
assert!(runtime_view.get_target_values().await.is_empty());
|
|
assert!(runtime_view.get_all_targets().read().await.is_empty());
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn runtime_view_reports_empty_runtime_snapshots() {
|
|
let runtime_view = NotifyRuntimeView::new(
|
|
Arc::new(RwLock::new(TargetList::new())),
|
|
Arc::new(RwLock::new(ReplayWorkerManager::new())),
|
|
);
|
|
|
|
assert!(runtime_view.snapshot_target_metrics().await.is_empty());
|
|
assert!(runtime_view.snapshot_target_health().await.is_empty());
|
|
|
|
let status = runtime_view.runtime_status_snapshot().await;
|
|
assert_eq!(status.target_count, 0);
|
|
assert_eq!(status.replay_worker_count, 0);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn runtime_view_reports_non_empty_runtime_queries_and_snapshots() {
|
|
let target_list = Arc::new(RwLock::new(TargetList::new()));
|
|
let replay_workers = Arc::new(RwLock::new(ReplayWorkerManager::new()));
|
|
|
|
let online = Arc::new(TestTarget::new("primary", "webhook").with_failed_store_length(7));
|
|
online.record_successes(3);
|
|
online.record_failures(1);
|
|
|
|
let disabled = Arc::new(TestTarget::new("backup", "mqtt").with_enabled(false).with_active(false));
|
|
disabled.record_successes(2);
|
|
|
|
{
|
|
let mut targets = target_list.write().await;
|
|
targets.add(online.clone() as Arc<dyn Target<Event> + Send + Sync>).unwrap();
|
|
targets.add(disabled.clone() as Arc<dyn Target<Event> + Send + Sync>).unwrap();
|
|
}
|
|
|
|
let runtime_view = NotifyRuntimeView::new(target_list.clone(), replay_workers.clone());
|
|
|
|
let mut active_targets = runtime_view.get_active_targets().await;
|
|
active_targets.sort();
|
|
assert_eq!(
|
|
active_targets,
|
|
vec![
|
|
TargetID::new("backup".to_string(), "mqtt".to_string()),
|
|
TargetID::new("primary".to_string(), "webhook".to_string())
|
|
]
|
|
);
|
|
|
|
let target_values = runtime_view.get_target_values().await;
|
|
assert_eq!(target_values.len(), 2);
|
|
assert_eq!(runtime_view.get_all_targets().read().await.len(), 2);
|
|
|
|
let metric_snapshots = runtime_view.snapshot_target_metrics().await;
|
|
assert_eq!(metric_snapshots.len(), 2);
|
|
assert_eq!(metric_snapshots[0].target_id, "backup:mqtt");
|
|
assert_eq!(metric_snapshots[0].failed_messages, 0);
|
|
assert_eq!(metric_snapshots[0].failed_store_length, 0);
|
|
assert_eq!(metric_snapshots[0].total_messages, 2);
|
|
assert_eq!(metric_snapshots[1].target_id, "primary:webhook");
|
|
assert_eq!(metric_snapshots[1].failed_messages, 1);
|
|
assert_eq!(metric_snapshots[1].failed_store_length, 7);
|
|
assert_eq!(metric_snapshots[1].total_messages, 3);
|
|
|
|
let health_snapshots = runtime_view.snapshot_target_health().await;
|
|
assert_eq!(health_snapshots.len(), 2);
|
|
assert_eq!(health_snapshots[0].target_id, "backup:mqtt");
|
|
assert!(!health_snapshots[0].enabled);
|
|
assert_eq!(health_snapshots[0].state, rustfs_targets::RuntimeTargetHealthState::Disabled);
|
|
assert_eq!(health_snapshots[1].target_id, "primary:webhook");
|
|
assert!(health_snapshots[1].enabled);
|
|
assert_eq!(health_snapshots[1].state, rustfs_targets::RuntimeTargetHealthState::Online);
|
|
|
|
let status = runtime_view.runtime_status_snapshot().await;
|
|
assert_eq!(status.target_count, 2);
|
|
assert_eq!(status.replay_worker_count, 0);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn health_probe_does_not_hold_the_target_list_read_lock() {
|
|
let target_list = Arc::new(RwLock::new(TargetList::new()));
|
|
let started = Arc::new(Notify::new());
|
|
let release = Arc::new(Notify::new());
|
|
let target = Arc::new(TestTarget::new("blocked", "webhook").with_health_gate(started.clone(), release.clone()));
|
|
target_list
|
|
.write()
|
|
.await
|
|
.add(target as Arc<dyn Target<Event> + Send + Sync>)
|
|
.expect("test target should be added");
|
|
let runtime_view = NotifyRuntimeView::new(target_list.clone(), Arc::new(RwLock::new(ReplayWorkerManager::new())));
|
|
|
|
let snapshot_task = tokio::spawn(async move { runtime_view.snapshot_target_health().await });
|
|
started.notified().await;
|
|
|
|
let write_guard = tokio::time::timeout(std::time::Duration::from_secs(1), target_list.write())
|
|
.await
|
|
.expect("network health probe must not retain the target-list read lock");
|
|
drop(write_guard);
|
|
release.notify_one();
|
|
|
|
assert_eq!(snapshot_task.await.expect("snapshot task should finish").len(), 1);
|
|
}
|
|
}
|