meta_srv/service/admin/
heartbeat.rs

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
// Copyright 2023 Greptime 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 std::collections::HashMap;

use common_meta::datanode::DatanodeStatValue;
use serde::{Deserialize, Serialize};
use snafu::ResultExt;
use tonic::codegen::http;

use crate::cluster::MetaPeerClientRef;
use crate::error::{self, Result};
use crate::service::admin::{util, HttpHandler};

#[derive(Clone)]
pub struct HeartBeatHandler {
    pub meta_peer_client: MetaPeerClientRef,
}

#[async_trait::async_trait]
impl HttpHandler for HeartBeatHandler {
    async fn handle(
        &self,
        path: &str,
        _: http::Method,
        params: &HashMap<String, String>,
    ) -> Result<http::Response<String>> {
        if path.ends_with("/help") {
            return util::to_text_response(
                r#"
            - GET /heartbeat
            - GET /heartbeat?addr=127.0.0.1:3001
            "#,
            );
        }

        let stat_kvs = self.meta_peer_client.get_all_dn_stat_kvs().await?;
        let mut stat_vals: Vec<DatanodeStatValue> = stat_kvs.into_values().collect();

        if let Some(addr) = params.get("addr") {
            stat_vals = filter_by_addr(stat_vals, addr);
        }
        let result = StatValues { stat_vals }.try_into()?;

        http::Response::builder()
            .status(http::StatusCode::OK)
            .body(result)
            .context(error::InvalidHttpBodySnafu)
    }
}

#[derive(Debug, Serialize, Deserialize)]
#[serde(transparent)]
pub struct StatValues {
    pub stat_vals: Vec<DatanodeStatValue>,
}

impl TryFrom<StatValues> for String {
    type Error = error::Error;

    fn try_from(vals: StatValues) -> Result<Self> {
        serde_json::to_string(&vals).context(error::SerializeToJsonSnafu {
            input: format!("{vals:?}"),
        })
    }
}

fn filter_by_addr(stat_vals: Vec<DatanodeStatValue>, addr: &str) -> Vec<DatanodeStatValue> {
    stat_vals
        .into_iter()
        .filter(|stat_val| stat_val.stats.iter().any(|stat| stat.addr == addr))
        .collect()
}

#[cfg(test)]
mod tests {
    use common_meta::datanode::{DatanodeStatValue, Stat};

    use crate::service::admin::heartbeat::filter_by_addr;

    #[tokio::test]
    async fn test_filter_by_addr() {
        let stat_value1 = DatanodeStatValue {
            stats: vec![
                Stat {
                    addr: "127.0.0.1:3001".to_string(),
                    timestamp_millis: 1,
                    ..Default::default()
                },
                Stat {
                    addr: "127.0.0.1:3001".to_string(),
                    timestamp_millis: 2,
                    ..Default::default()
                },
            ],
        };

        let stat_value2 = DatanodeStatValue {
            stats: vec![
                Stat {
                    addr: "127.0.0.1:3002".to_string(),
                    timestamp_millis: 3,
                    ..Default::default()
                },
                Stat {
                    addr: "127.0.0.1:3002".to_string(),
                    timestamp_millis: 4,
                    ..Default::default()
                },
                Stat {
                    addr: "127.0.0.1:3002".to_string(),
                    timestamp_millis: 5,
                    ..Default::default()
                },
            ],
        };

        let mut stat_vals = vec![stat_value1, stat_value2];
        stat_vals = filter_by_addr(stat_vals, "127.0.0.1:3002");
        assert_eq!(stat_vals.len(), 1);
        assert_eq!(stat_vals.first().unwrap().stats.len(), 3);
        assert_eq!(
            stat_vals
                .first()
                .unwrap()
                .stats
                .first()
                .unwrap()
                .timestamp_millis,
            3
        );
    }
}