sui_rpc_loadgen/
main.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

mod load_test;
mod payload;

use anyhow::Result;
use clap::Parser;
use payload::AddressQueryType;

use std::error::Error;
use std::path::PathBuf;
use std::time::{Duration, SystemTime, UNIX_EPOCH};
use sui_keys::keystore::{AccountKeystore, FileBasedKeystore, Keystore};
use sui_types::crypto::{EncodeDecodeBase64, SuiKeyPair};
use tracing::info;

use crate::load_test::{LoadTest, LoadTestConfig};
use crate::payload::{
    load_addresses_from_file, load_digests_from_file, load_objects_from_file, Command,
    RpcCommandProcessor, SignerInfo,
};

#[derive(Parser)]
#[clap(
    name = "Sui RPC Load Generator",
    version = "0.1",
    about = "A load test application for Sui RPC"
)]
struct Opts {
    // TODO(chris): support running multiple commands at once
    #[clap(subcommand)]
    pub command: ClapCommand,
    #[clap(long, default_value_t = 1)]
    pub num_threads: usize,
    #[clap(long, default_value_t = true)]
    pub cross_validate: bool,
    #[clap(long, num_args(1..), default_value = "http://127.0.0.1:9000")]
    pub urls: Vec<String>,
    /// the path to log file directory
    #[clap(long, default_value = "~/.sui/sui_config/logs")]
    logs_directory: String,

    #[clap(long, default_value = "~/.sui/loadgen/data")]
    data_directory: String,
}

#[derive(Parser)]
pub struct CommonOptions {
    #[clap(short, long, default_value_t = 0)]
    pub repeat: usize,

    #[clap(short, long, default_value_t = 0)]
    pub interval_in_ms: u64,

    /// different chunks will be executed concurrently on the same thread
    #[clap(long, default_value_t = 1)]
    num_chunks_per_thread: usize,
}

#[derive(Parser)]
pub enum ClapCommand {
    #[clap(name = "dry-run")]
    DryRun {
        #[clap(flatten)]
        common: CommonOptions,
    },
    #[clap(name = "get-checkpoints")]
    GetCheckpoints {
        /// Default to start from checkpoint 0
        #[clap(short, long, default_value_t = 0)]
        start: u64,

        /// inclusive, uses `getLatestCheckpointSequenceNumber` if `None`
        #[clap(short, long)]
        end: Option<u64>,

        #[clap(long)]
        skip_verify_transactions: bool,

        #[clap(long)]
        skip_verify_objects: bool,

        // Whether to record data from checkpoint
        #[clap(long)]
        skip_record: bool,

        #[clap(flatten)]
        common: CommonOptions,
    },
    #[clap(name = "pay-sui")]
    PaySui {
        // TODO(chris) customize recipients and amounts
        #[clap(flatten)]
        common: CommonOptions,
    },
    #[clap(name = "query-transaction-blocks")]
    QueryTransactionBlocks {
        #[clap(long, ignore_case = true)]
        address_type: AddressQueryType,

        #[clap(flatten)]
        common: CommonOptions,
    },
    #[clap(name = "multi-get-transaction-blocks")]
    MultiGetTransactionBlocks {
        #[clap(flatten)]
        common: CommonOptions,
    },
    #[clap(name = "multi-get-objects")]
    MultiGetObjects {
        #[clap(flatten)]
        common: CommonOptions,
    },
    #[clap(name = "get-object")]
    GetObject {
        #[clap(long)]
        chunk_size: usize,

        #[clap(flatten)]
        common: CommonOptions,
    },
    #[clap(name = "get-all-balances")]
    GetAllBalances {
        #[clap(long)]
        chunk_size: usize,

        #[clap(flatten)]
        common: CommonOptions,
    },
    #[clap(name = "get-reference-gas-price")]
    GetReferenceGasPrice {
        #[clap(flatten)]
        common: CommonOptions,
    },
}

fn get_keypair() -> Result<SignerInfo> {
    // TODO(chris) allow pass in custom path for keystore
    // Load keystore from ~/.sui/sui_config/sui.keystore
    let keystore_path = get_sui_config_directory().join("sui.keystore");
    let keystore = Keystore::from(FileBasedKeystore::new(&keystore_path)?);
    let active_address = keystore.addresses().pop().unwrap();
    let keypair: &SuiKeyPair = keystore.get_key(&active_address)?;
    println!("using address {active_address} for signing");
    Ok(SignerInfo::new(keypair.encode_base64()))
}

fn get_sui_config_directory() -> PathBuf {
    match dirs::home_dir() {
        Some(v) => v.join(".sui").join("sui_config"),
        None => panic!("Cannot obtain home directory path"),
    }
}

pub fn expand_path(dir_path: &str) -> String {
    shellexpand::full(&dir_path)
        .map(|v| v.into_owned())
        .unwrap_or_else(|e| panic!("Failed to expand directory '{:?}': {}", dir_path, e))
}

fn get_log_file_path(dir_path: String) -> String {
    let current_time = SystemTime::now().duration_since(UNIX_EPOCH).unwrap();
    let timestamp = current_time.as_secs();
    // use timestamp to signify which file is newer
    let log_filename = format!("sui-rpc-loadgen.{}.log", timestamp);

    let dir_path = expand_path(&dir_path);
    format!("{dir_path}/{log_filename}")
}

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let tracing_level = "debug";
    let network_tracing_level = "info";
    let log_filter = format!("{tracing_level},h2={network_tracing_level},tower={network_tracing_level},hyper={network_tracing_level},tonic::transport={network_tracing_level}");
    let opts = Opts::parse();

    let log_filename = get_log_file_path(opts.logs_directory);

    // Initialize logger
    let (_guard, _filter_handle) = telemetry_subscribers::TelemetryConfig::new()
        .with_env()
        .with_log_level(&log_filter)
        .with_log_file(&log_filename)
        .init();

    println!("Logging to {}", &log_filename);
    info!("Running Load Gen with following urls {:?}", opts.urls);

    let (command, common, need_keystore) = match opts.command {
        ClapCommand::DryRun { common } => (Command::new_dry_run(), common, false),
        ClapCommand::PaySui { common } => (Command::new_pay_sui(), common, true),
        ClapCommand::GetCheckpoints {
            common,
            start,
            end,
            skip_verify_transactions,
            skip_verify_objects,
            skip_record,
        } => (
            Command::new_get_checkpoints(
                start,
                end,
                !skip_verify_transactions,
                !skip_verify_objects,
                !skip_record,
            ),
            common,
            false,
        ),
        ClapCommand::QueryTransactionBlocks {
            common,
            address_type,
        } => {
            let addresses = load_addresses_from_file(expand_path(&opts.data_directory));
            (
                Command::new_query_transaction_blocks(address_type, addresses),
                common,
                false,
            )
        }
        ClapCommand::MultiGetTransactionBlocks { common } => {
            let digests = load_digests_from_file(expand_path(&opts.data_directory));
            (
                Command::new_multi_get_transaction_blocks(digests),
                common,
                false,
            )
        }
        ClapCommand::GetAllBalances { common, chunk_size } => {
            let addresses = load_addresses_from_file(expand_path(&opts.data_directory));
            (
                Command::new_get_all_balances(addresses, chunk_size),
                common,
                false,
            )
        }
        ClapCommand::MultiGetObjects { common } => {
            let objects = load_objects_from_file(expand_path(&opts.data_directory));
            (Command::new_multi_get_objects(objects), common, false)
        }
        ClapCommand::GetReferenceGasPrice { common } => {
            let num_repeats = common.num_chunks_per_thread;
            (
                Command::new_get_reference_gas_price(num_repeats),
                common,
                false,
            )
        }
        ClapCommand::GetObject { common, chunk_size } => {
            let objects = load_objects_from_file(expand_path(&opts.data_directory));
            (Command::new_get_object(objects, chunk_size), common, false)
        }
    };

    let signer_info = need_keystore.then_some(get_keypair()?);

    let command = command
        .with_repeat_interval(Duration::from_millis(common.interval_in_ms))
        .with_repeat_n_times(common.repeat);

    let processor = RpcCommandProcessor::new(&opts.urls, expand_path(&opts.data_directory)).await;

    let load_test = LoadTest {
        processor,
        config: LoadTestConfig {
            command,
            num_threads: opts.num_threads,
            // TODO: pass in from config
            divide_tasks: true,
            signer_info,
            num_chunks_per_thread: common.num_chunks_per_thread,
            max_repeat: common.repeat,
        },
    };
    load_test.run().await?;

    Ok(())
}