Skip to content
Closed
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
b93045e
page_fault metric
roberto-bayardo Apr 7, 2026
efbe263
reuse context
roberto-bayardo Apr 8, 2026
35d776c
track page_evictions
roberto-bayardo Apr 10, 2026
8176b29
fix counting
patrick-ogrady Apr 13, 2026
54d11eb
[runtime] Cleanup Page Fault Metrics (#3586)
patrick-ogrady Apr 14, 2026
04d387e
Merge branch 'main' into pr/3544
patrick-ogrady Apr 14, 2026
60cb5f6
[runtime] Page Cache Cleanup (v2) (#3600)
patrick-ogrady Apr 15, 2026
d92aa60
Merge remote-tracking branch 'origin/main' into pr/3544
patrick-ogrady Apr 15, 2026
1c1f815
nits
patrick-ogrady Apr 15, 2026
943f995
fmt
patrick-ogrady Apr 15, 2026
9586ad8
align
patrick-ogrady Apr 15, 2026
4c18bfb
more labeling
patrick-ogrady Apr 15, 2026
d9443e8
nits
patrick-ogrady Apr 15, 2026
22cf5c6
nits
patrick-ogrady Apr 15, 2026
4f7657c
nits
patrick-ogrady Apr 15, 2026
2bdca32
nits
patrick-ogrady Apr 15, 2026
467b9ca
more labeling
patrick-ogrady Apr 15, 2026
bcd3ae7
use db
patrick-ogrady Apr 15, 2026
fe305e0
nits
patrick-ogrady Apr 15, 2026
c7003c1
fix remaining clone
patrick-ogrady Apr 15, 2026
da89740
fix labels
patrick-ogrady Apr 15, 2026
7623c3d
more labels
patrick-ogrady Apr 15, 2026
f85bcc2
more nits
patrick-ogrady Apr 15, 2026
e814444
fmt
patrick-ogrady Apr 15, 2026
be8237d
major diff
patrick-ogrady Apr 15, 2026
0f33210
fmt
patrick-ogrady Apr 15, 2026
27a19e3
fix dynamic labels
patrick-ogrady Apr 15, 2026
c536581
nits
patrick-ogrady Apr 15, 2026
9c30aed
fix restarts
patrick-ogrady Apr 15, 2026
79191ac
recovery
patrick-ogrady Apr 15, 2026
5de0e76
nit
patrick-ogrady Apr 15, 2026
ae2616d
nits
patrick-ogrady Apr 15, 2026
052053d
fix missing labels
patrick-ogrady Apr 15, 2026
bf166f4
journal
patrick-ogrady Apr 15, 2026
22f293a
more changes
patrick-ogrady Apr 15, 2026
6279852
fmt
patrick-ogrady Apr 15, 2026
5b3522b
fix
patrick-ogrady Apr 15, 2026
cf8fc90
nits
patrick-ogrady Apr 15, 2026
cea5925
[runtime] Refactor Context (#3614)
patrick-ogrady Apr 17, 2026
0066f21
Merge branch 'main' into pr/3544
patrick-ogrady Apr 17, 2026
e512537
nits
patrick-ogrady Apr 17, 2026
7e44f56
nits
patrick-ogrady Apr 19, 2026
c625525
Merge remote-tracking branch 'origin/main' into pr/3544
patrick-ogrady Apr 20, 2026
ed497e8
dedup
patrick-ogrady Apr 20, 2026
a1b684f
nits
patrick-ogrady Apr 20, 2026
180d065
cleanup
patrick-ogrady Apr 20, 2026
1e5366c
Merge branch 'main' into pr/3544
patrick-ogrady Apr 21, 2026
83ba05b
Merge remote-tracking branch 'origin/main' into pr/3544
patrick-ogrady Apr 21, 2026
be6cc74
add changes
patrick-ogrady Apr 22, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions consensus/fuzz/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@ where
application::Application::new(context.with_label("application"), app_cfg);
actor.start();

let page_cache = CacheRef::from_pooler(context.with_label("cache"), PAGE_SIZE, PAGE_CACHE_SIZE);
let blocker = oracle.control(validator.clone());
let engine_cfg = config::Config {
blocker,
Expand All @@ -401,7 +402,7 @@ where
fetch_concurrent: 1,
replay_buffer: NZUsize!(1024 * 1024),
write_buffer: NZUsize!(1024 * 1024),
page_cache: CacheRef::from_pooler(&context, PAGE_SIZE, PAGE_CACHE_SIZE),
page_cache,
strategy: Sequential,
forwarding: ForwardingPolicy::Disabled,
};
Expand Down Expand Up @@ -615,6 +616,11 @@ fn run_with_twin_mutator<P: simplex::Simplex>(input: FuzzInput) {
application::Application::new(primary_context.with_label("application"), app_cfg);
actor.start();

let page_cache = CacheRef::from_pooler(
primary_context.with_label("cache"),
PAGE_SIZE,
PAGE_CACHE_SIZE,
);
let blocker = oracle.control(validator.clone());
let engine_cfg = config::Config {
blocker,
Expand All @@ -635,7 +641,7 @@ fn run_with_twin_mutator<P: simplex::Simplex>(input: FuzzInput) {
fetch_concurrent: 1,
replay_buffer: NZUsize!(1024 * 1024),
write_buffer: NZUsize!(1024 * 1024),
page_cache: CacheRef::from_pooler(&primary_context, PAGE_SIZE, PAGE_CACHE_SIZE),
page_cache,
strategy: Sequential,
forwarding: ForwardingPolicy::Disabled,
};
Expand Down
48 changes: 27 additions & 21 deletions consensus/src/aggregation/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,8 @@ mod tests {
let blocker = oracle.control(participant.clone());

// Create and start engine
let page_cache =
CacheRef::from_pooler(context.with_label("cache"), PAGE_SIZE, PAGE_CACHE_SIZE);
let engine = Engine::new(
context.with_label("engine"),
Config {
Expand All @@ -252,7 +254,7 @@ mod tests {
journal_replay_buffer: NZUsize!(4096),
journal_heights_per_section: std::num::NonZeroU64::new(6).unwrap(),
journal_compression: Some(3),
journal_page_cache: CacheRef::from_pooler(&context, PAGE_SIZE, PAGE_CACHE_SIZE),
journal_page_cache: page_cache,
strategy: Sequential,
},
);
Expand Down Expand Up @@ -479,6 +481,11 @@ mod tests {
let blocker = oracle.control(participant.clone());

// Create and start engine
let journal_page_cache = CacheRef::from_pooler(
validator_context.with_label("cache"),
PAGE_SIZE,
PAGE_CACHE_SIZE,
);
let engine = Engine::new(
validator_context.with_label("engine"),
Config {
Expand All @@ -497,11 +504,7 @@ mod tests {
journal_replay_buffer: NZUsize!(4096),
journal_heights_per_section: std::num::NonZeroU64::new(6).unwrap(),
journal_compression: Some(3),
journal_page_cache: CacheRef::from_pooler(
&context,
PAGE_SIZE,
PAGE_CACHE_SIZE,
),
journal_page_cache,
strategy: Sequential,
},
);
Expand Down Expand Up @@ -631,6 +634,11 @@ mod tests {
let blocker = oracle.control(participant.clone());

// Create and start engine
let journal_page_cache = CacheRef::from_pooler(
validator_context.with_label("cache"),
PAGE_SIZE,
PAGE_CACHE_SIZE,
);
let engine = Engine::new(
validator_context.with_label("engine"),
Config {
Expand All @@ -651,11 +659,7 @@ mod tests {
journal_replay_buffer: NZUsize!(4096),
journal_heights_per_section: std::num::NonZeroU64::new(6).unwrap(),
journal_compression: Some(3),
journal_page_cache: CacheRef::from_pooler(
&context,
PAGE_SIZE,
PAGE_CACHE_SIZE,
),
journal_page_cache,
strategy: Sequential,
},
);
Expand Down Expand Up @@ -718,6 +722,11 @@ mod tests {
let blocker = oracle.control(participant.clone());

// Create and start engine
let journal_page_cache = CacheRef::from_pooler(
validator_context.with_label("cache"),
PAGE_SIZE,
PAGE_CACHE_SIZE,
);
let engine = Engine::new(
validator_context.with_label("engine"),
Config {
Expand All @@ -738,11 +747,7 @@ mod tests {
journal_replay_buffer: NZUsize!(4096),
journal_heights_per_section: std::num::NonZeroU64::new(6).unwrap(),
journal_compression: Some(3),
journal_page_cache: CacheRef::from_pooler(
&context,
PAGE_SIZE,
PAGE_CACHE_SIZE,
),
journal_page_cache,
strategy: Sequential,
},
);
Expand Down Expand Up @@ -1068,6 +1073,11 @@ mod tests {
let blocker = oracle.control(participant.clone());

// Create and start engine
let journal_page_cache = CacheRef::from_pooler(
context.with_label("cache"),
PAGE_SIZE,
PAGE_CACHE_SIZE,
);
let engine = Engine::new(
context.with_label("engine"),
Config {
Expand All @@ -1086,11 +1096,7 @@ mod tests {
journal_replay_buffer: NZUsize!(4096),
journal_heights_per_section: std::num::NonZeroU64::new(6).unwrap(),
journal_compression: Some(3),
journal_page_cache: CacheRef::from_pooler(
&context,
PAGE_SIZE,
PAGE_CACHE_SIZE,
),
journal_page_cache,
strategy: Sequential,
},
);
Expand Down
Loading
Loading