sui_indexer_alt_jsonrpc/data/
pg_reader.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use std::sync::Arc;
use std::time::Duration;

use anyhow::anyhow;
use async_graphql::dataloader::DataLoader;
use diesel::deserialize::FromSqlRow;
use diesel::expression::QueryMetadata;
use diesel::pg::Pg;
use diesel::query_builder::{Query, QueryFragment, QueryId};
use diesel::query_dsl::methods::LimitDsl;
use diesel::query_dsl::CompatibleType;
use diesel_async::RunQueryDsl;
use prometheus::Registry;
use sui_indexer_alt_metrics::db::DbConnectionStatsCollector;
use sui_pg_db as db;
use tokio_util::sync::CancellationToken;
use tracing::{debug, warn};
use url::Url;

use crate::{data::error::Error, metrics::RpcMetrics};

/// This wrapper type exists to perform error conversion between the data fetching layer and the
/// RPC layer, metrics collection, and debug logging of database queries.
#[derive(Clone)]
pub(crate) struct PgReader {
    db: Option<db::Db>,
    metrics: Arc<RpcMetrics>,
    cancel: CancellationToken,
    slow_query_threshold: Duration,
}

pub(crate) struct Connection<'p> {
    conn: db::Connection<'p>,
    metrics: Arc<RpcMetrics>,
    slow_query_threshold: Duration,
}

impl PgReader {
    /// Create a new database reader. If `database_url` is `None`, the reader will not accept any
    /// connection requests (they will all fail).
    pub(crate) async fn new(
        database_url: Option<Url>,
        db_args: db::DbArgs,
        metrics: Arc<RpcMetrics>,
        registry: &Registry,
        cancel: CancellationToken,
        slow_query_threshold: Duration,
    ) -> Result<Self, Error> {
        let db = if let Some(database_url) = database_url {
            let db = db::Db::for_read(database_url, db_args)
                .await
                .map_err(Error::PgCreate)?;

            registry
                .register(Box::new(DbConnectionStatsCollector::new(
                    Some("rpc_db"),
                    db.clone(),
                )))
                .map_err(|e| Error::PgCreate(e.into()))?;

            Some(db)
        } else {
            None
        };

        Ok(Self {
            db,
            metrics,
            cancel,
            slow_query_threshold,
        })
    }

    /// Create a data loader backed by this reader.
    pub(crate) fn as_data_loader(&self) -> DataLoader<Self> {
        DataLoader::new(self.clone(), tokio::spawn)
    }

    /// Acquire a connection to the database. This can potentially fail if the service is cancelled
    /// while the connection is being acquired.
    pub(crate) async fn connect(&self) -> Result<Connection<'_>, Error> {
        let Some(db) = &self.db else {
            return Err(Error::PgConnect(anyhow!("No database to connect to")));
        };

        tokio::select! {
            _ = self.cancel.cancelled() => {
                Err(Error::PgConnect(anyhow!("Cancelled while connecting to the database")))
            }

            conn = db.connect() => {
                Ok(Connection {
                    conn: conn.map_err(Error::PgConnect)?,
                    metrics: self.metrics.clone(),
                    slow_query_threshold: self.slow_query_threshold,
                })
            }
        }
    }
}

impl Connection<'_> {
    pub(crate) async fn first<'q, Q, ST, U>(&mut self, query: Q) -> Result<U, Error>
    where
        Q: LimitDsl,
        Q::Output: Query + QueryFragment<Pg> + QueryId + Send + 'q,
        <Q::Output as Query>::SqlType: CompatibleType<U, Pg, SqlType = ST>,
        U: Send + FromSqlRow<ST, Pg> + 'static,
        Pg: QueryMetadata<<Q::Output as Query>::SqlType>,
        ST: 'static,
    {
        let query = query.limit(1);
        let query_debug = diesel::debug_query(&query).to_string();
        debug!("{query_debug}");

        let timer = self.metrics.db_latency.start_timer();
        let res = query.get_result(&mut self.conn).await;
        let elapsed_ms = timer.stop_and_record() * 1000.0;
        let threshold_ms = self.slow_query_threshold.as_millis() as f64;
        if elapsed_ms > threshold_ms {
            warn!(
                elapsed_ms,
                threshold_ms,
                query = query_debug,
                "Slow database query detected!",
            );
        }

        if res.is_ok() {
            self.metrics.db_requests_succeeded.inc();
        } else {
            self.metrics.db_requests_failed.inc();
        }

        Ok(res?)
    }

    pub(crate) async fn results<'q, Q, ST, U>(&mut self, query: Q) -> Result<Vec<U>, Error>
    where
        Q: Query + QueryFragment<Pg> + QueryId + Send + 'q,
        Q::SqlType: CompatibleType<U, Pg, SqlType = ST>,
        U: Send + FromSqlRow<ST, Pg> + 'static,
        Pg: QueryMetadata<Q::SqlType>,
        ST: 'static,
    {
        let query_debug = diesel::debug_query(&query).to_string();
        debug!("{query_debug}");

        let timer = self.metrics.db_latency.start_timer();
        let res = query.get_results(&mut self.conn).await;
        let elapsed_ms = timer.stop_and_record() * 1000.0;
        let threshold_ms = self.slow_query_threshold.as_millis() as f64;
        if elapsed_ms > threshold_ms {
            warn!(
                elapsed_ms,
                threshold_ms,
                query = query_debug,
                "Slow database query detected!",
            );
        }

        if res.is_ok() {
            self.metrics.db_requests_succeeded.inc();
        } else {
            self.metrics.db_requests_failed.inc();
        }

        Ok(res?)
    }
}