pagebench: restructure dir a bit

This commit is contained in:
Christian Schwarz
2023-12-05 18:35:43 +00:00
parent cb3dcb06cf
commit 60cc3a3397
4 changed files with 4 additions and 3 deletions

View File

@@ -1,5 +1,3 @@
mod tenant_timeline_id;
use anyhow::Context;
use pageserver::client::page_service::RelTagBlockNo;
use pageserver::pgdatadir_mapping::{is_rel_block_key, key_to_rel_block};
@@ -20,7 +18,7 @@ use std::sync::atomic::{AtomicU64, Ordering};
use std::sync::{Arc, Mutex};
use std::time::{Duration, Instant};
use self::tenant_timeline_id::TenantTimelineId;
use crate::util::tenant_timeline_id::TenantTimelineId;
/// GetPage@LatestLSN, uniformly distributed across the compute-accessible keyspace.
#[derive(clap::Parser)]

View File

@@ -1,5 +1,7 @@
use clap::Parser;
pub(crate) mod util;
mod getpage_latest_lsn;
/// Component-level performance test for pageserver.

View File

@@ -0,0 +1 @@
pub(crate) mod tenant_timeline_id;