sui_rpc_benchmark/
lib.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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

pub mod config;
pub mod direct;
pub mod json_rpc;

use std::collections::HashSet;
use std::time::Duration;

use anyhow::Result;
use clap::{value_parser, Parser, Subcommand};
use tracing::info;
use url::Url;

use crate::config::BenchmarkConfig;
use crate::direct::query_enricher::QueryEnricher;
use crate::direct::query_executor::QueryExecutor;
use crate::direct::query_template_generator::QueryTemplateGenerator;

#[derive(Parser)]
#[clap(
    name = "sui-rpc-benchmark",
    about = "Benchmark tool for comparing Sui RPC access methods"
)]
pub struct Opts {
    #[clap(subcommand)]
    pub command: Command,
}

#[derive(Subcommand)]
pub enum Command {
    /// Benchmark direct database queries
    #[clap(name = "direct")]
    DirectQuery {
        #[clap(
            long,
            default_value = "postgres://postgres:postgres@localhost:5432/sui",
            value_parser = value_parser!(Url)
        )]
        db_url: Url,
        #[clap(long, default_value = "50")]
        concurrency: usize,
        #[clap(long, default_value = "30")]
        duration_secs: u64,
    },
    /// Benchmark JSON RPC endpoints
    #[clap(name = "jsonrpc")]
    JsonRpc {
        #[clap(long, default_value = "http://127.0.0.1:9000")]
        endpoint: String,
        #[clap(long, default_value = "50")]
        concurrency: usize,
        #[clap(long)]
        duration_secs: Option<u64>,
        #[clap(long, default_value = "requests.jsonl")]
        requests_file: String,
        #[clap(long, value_delimiter = ',')]
        methods_to_skip: Vec<String>,
    },
    /// Benchmark GraphQL queries
    #[clap(name = "graphql")]
    GraphQL {
        #[clap(long, default_value = "http://127.0.0.1:9000/graphql")]
        endpoint: String,
    },
}

pub async fn run_benchmarks() -> Result<(), anyhow::Error> {
    let opts: Opts = Opts::parse();

    match opts.command {
        Command::DirectQuery {
            db_url,
            concurrency,
            duration_secs,
        } => {
            info!("Running direct query benchmark against DB {}", db_url);

            let template_generator = QueryTemplateGenerator::new(db_url.clone());
            let query_templates = template_generator.generate_query_templates().await?;
            info!("Generated {} query templates", query_templates.len());

            let query_enricher = QueryEnricher::new(&db_url).await?;
            let enriched_queries = query_enricher.enrich_queries(query_templates).await?;
            info!(
                "Enriched {} queries with sample data",
                enriched_queries.len()
            );

            let config = BenchmarkConfig {
                concurrency,
                duration: Some(Duration::from_secs(duration_secs)),
                json_rpc_file_path: None,
                json_rpc_methods_to_skip: HashSet::new(),
            };
            let query_executor = QueryExecutor::new(&db_url, enriched_queries, config).await?;
            let result = query_executor.run().await?;

            info!("Total queries: {}", result.total_queries);
            info!("Total errors: {}", result.total_errors);
            info!("Average latency: {:.2}ms", result.avg_latency_ms);
            info!("Per-table statistics:");
            for stat in &result.table_stats {
                info!(
                    "  {:<30} queries: {:<8} errors: {:<8} avg latency: {:.2}ms",
                    stat.table_name, stat.queries, stat.errors, stat.avg_latency_ms
                );
            }
            Ok(())
        }
        Command::JsonRpc {
            endpoint,
            concurrency,
            duration_secs,
            requests_file,
            methods_to_skip,
        } => {
            info!(
                concurrency,
                ?duration_secs,
                requests_file,
                "Running JSON RPC benchmark against {endpoint}"
            );
            json_rpc::run_benchmark(
                &endpoint,
                &requests_file,
                concurrency,
                duration_secs,
                methods_to_skip.into_iter().collect(),
            )
            .await?;
            Ok(())
        }
        Command::GraphQL { endpoint } => {
            info!("Running GraphQL benchmark against {}", endpoint);
            todo!()
        }
    }
}