Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Increase window size (#1578)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pgarg66 authored Oct 23, 2018
1 parent ce934a5 commit bbb38ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use std::net::SocketAddr;
use std::sync::atomic::AtomicUsize;
use std::sync::{Arc, RwLock};

pub const WINDOW_SIZE: u64 = 2 * 1024;
pub const WINDOW_SIZE: u64 = 32 * 1024;

#[derive(Default, Clone)]
pub struct WindowSlot {
Expand Down

0 comments on commit bbb38ac

Please sign in to comment.