hyperdb-api 0.1.1

Pure Rust API for Hyper database
Documentation
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
// Copyright (c) 2026, Salesforce, Inc. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Shared primitives for the `hyperdb-api` benchmark suite.
//!
//! Every benchmark in this directory (`benchmark.rs`,
//! `arrow_batching_benchmark.rs`, `grpc_benchmark_tests.rs`,
//! `async_parallel_benchmark.rs`, `benchmark_suite.rs`) reaches into
//! this module via `#[path = "common.rs"] mod common;` so that:
//!
//! - all row data is generated by the same deterministic formula
//!   (`gen_id`, `gen_sensor_id`, `gen_value`, `gen_timestamp`) so
//!   rows/sec numbers are comparable across benches regardless of
//!   which one you run.
//! - one `ResourceStats` + `ResourceMonitor` is the sole source of
//!   CPU/memory metrics — no more copy-pastes drifting apart.
//! - formatting helpers (`fmt_count`, `fmt_rate`, `fmt_size`,
//!   `fmt_mb`) produce identical output everywhere.
//! - `HOST_ENV` collects the OS, CPU, RAM, Rust version, hyperd git
//!   hash so the unified result tables in `BENCHMARK_GUIDE.md` are
//!   self-describing.
//!
//! This module is never `pub mod`-included by the crate itself; it
//! compiles once per example that pulls it in (tiny cost, avoids an
//! extra library crate).

#![expect(
    dead_code,
    reason = "bench helper module; each bench binary exercises a different subset"
)]

use std::fmt::Write as _;
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, Mutex};
use std::thread;
use std::time::Duration;

use sysinfo::{ProcessesToUpdate, System};

// =============================================================================
// Canonical schema — shared across every bench so numbers compare.
// =============================================================================

/// The canonical measurements table schema used by the sync,
/// async, parallel, and suite benchmarks. Kept at 24 bytes/row so
/// rows-per-second translates directly to MB/s at the same multiplier.
///
/// Columns:
///   - `id`         INT    NOT NULL     (4 bytes)
///   - `sensor_id`  INT    nullable     (4 bytes)
///   - `value`      DOUBLE nullable     (8 bytes)
///   - `timestamp`  BIGINT nullable     (8 bytes)
pub(crate) const MEASUREMENTS_DDL: &str =
    "id INT NOT NULL, sensor_id INT, value DOUBLE PRECISION, timestamp BIGINT";

/// Bytes-per-row for the canonical schema. Every bench uses this
/// constant rather than hard-coding `24` so a schema change is a
/// single-point update.
pub(crate) const BYTES_PER_ROW: usize = 24;

/// Deterministic row generators. All benches encode the same values
/// for a given (`worker_id`, `row_index`) so the resulting `.hyper` files
/// are byte-identical across benches and cross-bench validation is
/// trivial (`SELECT COUNT(*)`, `SELECT SUM(value)` etc).
#[inline]
pub(crate) fn gen_id(start_id: i64, i: i64) -> i32 {
    (start_id + i) as i32
}
#[inline]
pub(crate) fn gen_sensor_id(id: i32) -> i32 {
    id % 10
}
#[inline]
pub(crate) fn gen_value(id: i32) -> f64 {
    f64::from(id) * 0.1
}
#[inline]
pub(crate) fn gen_timestamp(id: i32) -> i64 {
    1_700_000_000_000i64 + i64::from(id) * 1000
}

// =============================================================================
// Resource monitoring.
// =============================================================================

pub(crate) const SAMPLE_INTERVAL_MS: u64 = 100;

/// Resource samples captured during a benchmark.
#[derive(Debug, Clone, Default)]
pub(crate) struct ResourceStats {
    pub cpu_samples: Vec<f32>,
    pub memory_samples: Vec<u64>,
    pub sample_count: usize,
}

impl ResourceStats {
    pub(crate) fn cpu_avg(&self) -> f32 {
        if self.cpu_samples.is_empty() {
            0.0
        } else {
            self.cpu_samples.iter().sum::<f32>() / self.cpu_samples.len() as f32
        }
    }
    pub(crate) fn cpu_max(&self) -> f32 {
        self.cpu_samples.iter().copied().fold(0.0f32, f32::max)
    }
    pub(crate) fn memory_avg_mb(&self) -> f64 {
        if self.memory_samples.is_empty() {
            0.0
        } else {
            let avg =
                self.memory_samples.iter().sum::<u64>() as f64 / self.memory_samples.len() as f64;
            avg / (1024.0 * 1024.0)
        }
    }
    pub(crate) fn memory_max_mb(&self) -> f64 {
        self.memory_samples.iter().copied().max().unwrap_or(0) as f64 / (1024.0 * 1024.0)
    }
    pub(crate) fn memory_min_mb(&self) -> f64 {
        self.memory_samples.iter().copied().min().unwrap_or(0) as f64 / (1024.0 * 1024.0)
    }
}

/// Background thread that polls our own process for CPU/memory
/// usage every [`SAMPLE_INTERVAL_MS`]ms and stops when the
/// `ResourceMonitor` is dropped or [`ResourceMonitor::stop`] is called.
pub(crate) struct ResourceMonitor {
    running: Arc<AtomicBool>,
    stats: Arc<Mutex<ResourceStats>>,
    handle: Option<thread::JoinHandle<()>>,
}

impl ResourceMonitor {
    pub(crate) fn start() -> Self {
        let running = Arc::new(AtomicBool::new(true));
        let stats = Arc::new(Mutex::new(ResourceStats::default()));

        let running_c = Arc::clone(&running);
        let stats_c = Arc::clone(&stats);
        let handle = thread::spawn(move || {
            let mut sys = System::new_all();
            let Ok(pid) = sysinfo::get_current_pid() else {
                return;
            };
            while running_c.load(Ordering::Relaxed) {
                sys.refresh_processes(ProcessesToUpdate::Some(&[pid]), true);
                if let Some(proc_) = sys.process(pid) {
                    let cpu = proc_.cpu_usage();
                    let mem = proc_.memory();
                    if let Ok(mut s) = stats_c.lock() {
                        s.cpu_samples.push(cpu);
                        s.memory_samples.push(mem);
                        s.sample_count += 1;
                    }
                }
                thread::sleep(Duration::from_millis(SAMPLE_INTERVAL_MS));
            }
        });

        ResourceMonitor {
            running,
            stats,
            handle: Some(handle),
        }
    }

    pub(crate) fn stop(mut self) -> ResourceStats {
        self.running.store(false, Ordering::Relaxed);
        if let Some(h) = self.handle.take() {
            let _ = h.join();
        }
        self.stats.lock().map(|s| s.clone()).unwrap_or_default()
    }
}

// =============================================================================
// Formatting helpers.
// =============================================================================

/// Format a row count like `123.4K`, `12.3M`, `1.23B`.
pub(crate) fn fmt_count(n: u64) -> String {
    if n >= 1_000_000_000 {
        format!("{:.2}B", n as f64 / 1_000_000_000.0)
    } else if n >= 1_000_000 {
        format!("{:.2}M", n as f64 / 1_000_000.0)
    } else if n >= 1_000 {
        format!("{:.1}K", n as f64 / 1_000.0)
    } else {
        n.to_string()
    }
}

/// Format a rate like `12.3 M/s`, `123 K/s`, `45/s`.
pub(crate) fn fmt_rate(rows_per_sec: f64) -> String {
    if rows_per_sec >= 1e9 {
        format!("{:.2} B/s", rows_per_sec / 1e9)
    } else if rows_per_sec >= 1e6 {
        format!("{:.2} M/s", rows_per_sec / 1e6)
    } else if rows_per_sec >= 1e3 {
        format!("{:.2} K/s", rows_per_sec / 1e3)
    } else {
        format!("{rows_per_sec:.0}/s")
    }
}

/// Format MB/sec with two decimals.
pub(crate) fn fmt_mb(bytes: usize, elapsed_secs: f64) -> String {
    if elapsed_secs <= 0.0 {
        return "".to_string();
    }
    let mb = bytes as f64 / (1024.0 * 1024.0);
    format!("{:.1} MB/s", mb / elapsed_secs)
}

/// Format a byte count with a size suffix.
pub(crate) fn fmt_size(bytes: usize) -> String {
    if bytes >= 1_000_000_000 {
        format!("{:.2} GB", bytes as f64 / 1_000_000_000.0)
    } else if bytes >= 1_000_000 {
        format!("{:.2} MB", bytes as f64 / 1_000_000.0)
    } else if bytes >= 1_000 {
        format!("{:.2} KB", bytes as f64 / 1_000.0)
    } else {
        format!("{bytes} B")
    }
}

// =============================================================================
// Host environment snapshot for the unified report.
// =============================================================================

/// Host + toolchain description captured at startup. Consumed by the
/// `benchmark_suite` binary and included in the JSON output so the
/// tables in `BENCHMARK_GUIDE.md` carry their own provenance.
#[derive(Debug, Clone)]
pub(crate) struct HostEnv {
    pub os: String,
    pub os_version: String,
    pub arch: String,
    pub cpu_brand: String,
    pub cpu_cores_physical: usize,
    pub cpu_cores_logical: usize,
    pub total_memory_gb: f64,
    pub rustc_version: String,
    pub hyperdb_api_version: &'static str,
}

impl HostEnv {
    pub(crate) fn detect() -> Self {
        let mut sys = System::new_all();
        sys.refresh_all();

        let cpus = sys.cpus();
        let cpu_brand = cpus
            .first()
            .map(|c| c.brand().to_string())
            .unwrap_or_default();
        let physical = sysinfo::System::physical_core_count().unwrap_or(cpus.len());
        let logical = cpus.len();
        let total_memory_gb = sys.total_memory() as f64 / (1024.0 * 1024.0 * 1024.0);

        HostEnv {
            os: System::name().unwrap_or_else(|| "unknown".to_string()),
            os_version: System::os_version().unwrap_or_else(|| "unknown".to_string()),
            arch: std::env::consts::ARCH.to_string(),
            cpu_brand,
            cpu_cores_physical: physical,
            cpu_cores_logical: logical,
            total_memory_gb,
            rustc_version: rustc_version_runtime(),
            hyperdb_api_version: env!("CARGO_PKG_VERSION"),
        }
    }

    /// One-line human-readable summary, e.g.
    /// `macOS 15.0 · Apple M3 Max · 14p/14l · 36.0 GB · rustc 1.82.0`.
    pub(crate) fn short(&self) -> String {
        format!(
            "{} {} · {} · {}p/{}l · {:.1} GB · {}",
            self.os,
            self.os_version,
            self.cpu_brand,
            self.cpu_cores_physical,
            self.cpu_cores_logical,
            self.total_memory_gb,
            self.rustc_version,
        )
    }

    /// Multi-line markdown bullet list — used in the doc's platform
    /// sections.
    pub(crate) fn markdown(&self) -> String {
        format!(
            "- **OS:** {} {} ({})\n\
             - **CPU:** {} ({} physical / {} logical cores)\n\
             - **Memory:** {:.1} GB\n\
             - **Rust:** {}\n\
             - **hyperdb-api version:** {}\n",
            self.os,
            self.os_version,
            self.arch,
            self.cpu_brand,
            self.cpu_cores_physical,
            self.cpu_cores_logical,
            self.total_memory_gb,
            self.rustc_version,
            self.hyperdb_api_version,
        )
    }
}

/// Best-effort rustc version string — `rustc --version` output of the
/// toolchain that compiled *this* binary. Falls back to an `env!`
/// probe at compile time.
fn rustc_version_runtime() -> String {
    // `rustc-version` crate would be cleaner but adding a dep just for
    // one string is overkill. We approximate with the `RUSTC_SEMVER`
    // env var if present (set by nothing by default) and then by
    // spawning `rustc --version` once.
    if let Ok(out) = std::process::Command::new("rustc")
        .arg("--version")
        .output()
    {
        if out.status.success() {
            if let Ok(s) = String::from_utf8(out.stdout) {
                return s.trim().to_string();
            }
        }
    }
    "rustc (unknown)".to_string()
}

// =============================================================================
// Unified BenchRecord — the shape every bench's results get reported
// in when collected into the suite report.
// =============================================================================

/// One row of the unified sync-vs-async result matrix. Emitted by
/// `benchmark_suite` as JSON and rendered as a markdown table in
/// `BENCHMARK_GUIDE.md`.
#[derive(Debug, Clone)]
pub(crate) struct BenchRecord {
    /// Short workload label, e.g. `"insert.bulk"`, `"query.full_scan"`.
    pub workload: String,
    /// `"sync"` or `"async"`.
    pub flavor: &'static str,
    /// Extra qualifier (e.g. `"1 connection"`, `"4 parallel"`,
    /// `"IPC"`, `"Arrow"`). `""` when unambiguous.
    pub variant: String,
    pub rows: u64,
    pub bytes: usize,
    pub elapsed_secs: f64,
}

impl BenchRecord {
    pub(crate) fn rows_per_sec(&self) -> f64 {
        if self.elapsed_secs <= 0.0 {
            0.0
        } else {
            self.rows as f64 / self.elapsed_secs
        }
    }
    pub(crate) fn mb_per_sec(&self) -> f64 {
        if self.elapsed_secs <= 0.0 {
            0.0
        } else {
            (self.bytes as f64 / (1024.0 * 1024.0)) / self.elapsed_secs
        }
    }
}

/// Render `Vec<BenchRecord>` as a markdown table suitable for
/// pasting into `BENCHMARK_GUIDE.md`. Pairs sync/async variants
/// of the same workload on adjacent rows for easy visual diffing.
pub(crate) fn records_to_markdown(records: &[BenchRecord]) -> String {
    use std::collections::BTreeMap;
    let mut grouped: BTreeMap<(String, String), Vec<&BenchRecord>> = BTreeMap::new();
    for r in records {
        grouped
            .entry((r.workload.clone(), r.variant.clone()))
            .or_default()
            .push(r);
    }

    let mut out = String::new();
    out.push_str(
        "| Workload | Variant | Flavor | Rows | Time (s) | Rows/sec | MB/sec |\n\
         |---|---|---|---:|---:|---:|---:|\n",
    );
    for ((workload, variant), recs) in &grouped {
        // Preferred ordering: sync then async.
        let mut ordered = recs.clone();
        ordered.sort_by_key(|r| match r.flavor {
            "sync" => 0,
            "async" => 1,
            _ => 2,
        });
        for r in ordered {
            let _ = writeln!(
                out,
                "| {} | {} | {} | {} | {:.3} | {} | {:.1} |\n",
                workload,
                variant,
                r.flavor,
                fmt_count(r.rows),
                r.elapsed_secs,
                fmt_rate(r.rows_per_sec()),
                r.mb_per_sec()
            );
        }
    }
    out
}

/// Render a very compact JSON array of `BenchRecords` — no external
/// serde dep. Used by `benchmark_suite` to emit machine-readable
/// results alongside the human-readable markdown.
pub(crate) fn records_to_json(records: &[BenchRecord], env: &HostEnv) -> String {
    let mut out = String::new();
    out.push_str("{\n  \"host\": {");
    let _ = write!(out, "\"os\": {:?}, ", env.os);
    let _ = write!(out, "\"os_version\": {:?}, ", env.os_version);
    let _ = write!(out, "\"arch\": {:?}, ", env.arch);
    let _ = write!(out, "\"cpu\": {:?}, ", env.cpu_brand);
    let _ = write!(out, "\"physical_cores\": {}, ", env.cpu_cores_physical);
    let _ = write!(out, "\"logical_cores\": {}, ", env.cpu_cores_logical);
    let _ = write!(out, "\"memory_gb\": {:.2}, ", env.total_memory_gb);
    let _ = write!(out, "\"rustc\": {:?}, ", env.rustc_version);
    let _ = write!(
        out,
        "\"hyperdb_api_version\": {:?}",
        env.hyperdb_api_version
    );
    out.push_str("},\n  \"records\": [\n");
    for (i, r) in records.iter().enumerate() {
        let _ = writeln!(out, "    {{\"workload\": {:?}, \"variant\": {:?}, \"flavor\": {:?}, \"rows\": {}, \"bytes\": {}, \"elapsed_secs\": {:.6}, \"rows_per_sec\": {:.3}, \"mb_per_sec\": {:.3}}}{}\n",
            r.workload,
            r.variant,
            r.flavor,
            r.rows,
            r.bytes,
            r.elapsed_secs,
            r.rows_per_sec(),
            r.mb_per_sec(),
            if i + 1 < records.len() { "," } else { "" });
    }
    out.push_str("  ]\n}\n");
    out
}