Increase window size (#1578)
Addresses the following problem - Validators are not able to keep up with the leader - The future blobs (outside of window) get dropped - The validators won't process repair requests for these future blobs
This commit is contained in:
@ -17,7 +17,7 @@ use std::net::SocketAddr;
|
|||||||
use std::sync::atomic::AtomicUsize;
|
use std::sync::atomic::AtomicUsize;
|
||||||
use std::sync::{Arc, RwLock};
|
use std::sync::{Arc, RwLock};
|
||||||
|
|
||||||
pub const WINDOW_SIZE: u64 = 2 * 1024;
|
pub const WINDOW_SIZE: u64 = 32 * 1024;
|
||||||
|
|
||||||
#[derive(Default, Clone)]
|
#[derive(Default, Clone)]
|
||||||
pub struct WindowSlot {
|
pub struct WindowSlot {
|
||||||
|
Reference in New Issue
Block a user