mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-09 14:32:57 +00:00
Make page server startup less noisy.
This commit is contained in:
committed by
Stas Kelvich
parent
98b8426780
commit
52e754f301
@@ -405,8 +405,8 @@ pub fn put_page_image(tag: BufferTag, lsn: u64, img: Bytes)
|
||||
PAGECACHE.num_entries.fetch_add(1, Ordering::Relaxed);
|
||||
assert!(oldentry.is_none());
|
||||
|
||||
debug!("inserted page image for {}/{}/{}_{} blk {} at {}",
|
||||
tag.spcnode, tag.dbnode, tag.relnode, tag.forknum, tag.blknum, lsn);
|
||||
//debug!("inserted page image for {}/{}/{}_{} blk {} at {}",
|
||||
// tag.spcnode, tag.dbnode, tag.relnode, tag.forknum, tag.blknum, lsn);
|
||||
|
||||
PAGECACHE.num_page_images.fetch_add(1, Ordering::Relaxed);
|
||||
}
|
||||
|
||||
@@ -112,7 +112,7 @@ async fn restore_chunk() -> Result<(), S3Error> {
|
||||
}
|
||||
page_cache::init_valid_lsn(oldest_lsn);
|
||||
|
||||
info!("{} files to read...", slurp_futures.len());
|
||||
info!("{} files to restore...", slurp_futures.len());
|
||||
|
||||
future::join_all(slurp_futures).await;
|
||||
info!("restored!");
|
||||
|
||||
Reference in New Issue
Block a user