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
|
use redis::{
ErrorKind, IntoConnectionInfo, RedisError,
sentinel::{SentinelClient, SentinelNodeConnectionInfo, SentinelServerType},
};
use serde::Deserialize;
use tokio::sync::Mutex;
struct LockedSentinelClient(pub(crate) Mutex<SentinelClient>);
/// ConnectionManager that implements `bb8::ManageConnection` and supports
/// asynchronous Sentinel connections via `redis::sentinel::SentinelClient`
pub struct RedisSentinelConnectionManager {
client: LockedSentinelClient,
}
impl RedisSentinelConnectionManager {
pub fn new<T: IntoConnectionInfo>(
info: Vec<T>,
service_name: String,
node_connection_info: Option<SentinelNodeConnectionInfo>,
) -> Result<RedisSentinelConnectionManager, RedisError> {
Ok(RedisSentinelConnectionManager {
client: LockedSentinelClient(Mutex::new(SentinelClient::build(
info,
service_name,
node_connection_info,
SentinelServerType::Master,
)?)),
})
}
}
impl bb8::ManageConnection for RedisSentinelConnectionManager {
type Connection = redis::aio::MultiplexedConnection;
type Error = RedisError;
async fn connect(&self) -> Result<Self::Connection, Self::Error> {
self.client.0.lock().await.get_async_connection().await
}
async fn is_valid(&self, conn: &mut Self::Connection) -> Result<(), Self::Error> {
let pong: String = redis::cmd("PING").query_async(conn).await?;
match pong.as_str() {
"PONG" => Ok(()),
_ => Err((ErrorKind::ResponseError, "ping request").into()),
}
}
fn has_broken(&self, _: &mut Self::Connection) -> bool {
false
}
}
#[derive(Clone, Debug, Deserialize, Eq, PartialEq)]
pub struct SentinelConfig {
#[serde(rename = "sentinel_service_name")]
pub service_name: String,
#[serde(default)]
pub redis_tls_mode_secure: bool,
pub redis_db: Option<i64>,
pub redis_username: Option<String>,
pub redis_password: Option<String>,
#[serde(default)]
pub redis_use_resp3: bool,
}
|