Temporarily increase notifications buffer size (#5644)

* Temporarily increase notifications buffer size

* Add a 511.0 bucket
This commit is contained in:
Pierre Krieger
2020-04-15 23:27:33 +02:00
committed by GitHub
parent 1c7a3fe7d5
commit efde6056f6
2 changed files with 2 additions and 2 deletions
@@ -44,7 +44,7 @@ use unsigned_varint::codec::UviBytes;
/// Maximum allowed size of the two handshake messages, in bytes.
const MAX_HANDSHAKE_SIZE: usize = 1024;
/// Maximum number of buffered messages before we refuse to accept more.
const MAX_PENDING_MESSAGES: usize = 256;
const MAX_PENDING_MESSAGES: usize = 512;
/// Upgrade that accepts a substream, sends back a status message, then becomes a unidirectional
/// stream of messages.
+1 -1
View File
@@ -937,7 +937,7 @@ impl Metrics {
"sub_libp2p_notifications_queues_size",
"Total size of all the notification queues"
),
buckets: vec![0.0, 1.0, 2.0, 4.0, 8.0, 16.0, 32.0, 64.0, 128.0, 256.0],
buckets: vec![0.0, 1.0, 2.0, 4.0, 8.0, 16.0, 32.0, 64.0, 128.0, 256.0, 511.0, 512.0],
},
&["protocol"]
)?, registry)?,