Skip to content

Commit

Permalink
chore: update defaults for timeline_detach_ancestor (#7779)
Browse files Browse the repository at this point in the history
by having 100 copy operations in flight twe climb up to 2500 requests
per min or 41/s. This is still probably less than is allowed, but fast
enough for our purposes.
  • Loading branch information
koivunej authored May 17, 2024
1 parent 6d951e6 commit c1390bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pageserver/src/tenant/timeline/detach_ancestor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl Default for Options {
fn default() -> Self {
Self {
rewrite_concurrency: std::num::NonZeroUsize::new(2).unwrap(),
copy_concurrency: std::num::NonZeroUsize::new(10).unwrap(),
copy_concurrency: std::num::NonZeroUsize::new(100).unwrap(),
}
}
}
Expand Down

1 comment on commit c1390bf

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

3153 tests run: 3013 passed, 0 failed, 140 skipped (full report)


Flaky tests (2)

Postgres 15

  • test_vm_bit_clear_on_heap_lock: debug

Postgres 14

  • test_download_remote_layers_api: release

Code coverage* (full report)

  • functions: 31.5% (6350 of 20190 functions)
  • lines: 47.4% (47943 of 101054 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
c1390bf at 2024-05-17T11:46:26.364Z :recycle:

Please sign in to comment.