keep state sync queue sizes smaller

This commit is contained in:
tycho garen
2021-06-22 14:37:53 -04:00
parent a8fcc919e0
commit d874f85710

View File

@@ -41,7 +41,7 @@ var (
Priority: 6,
SendQueueCapacity: 10,
RecvMessageCapacity: snapshotMsgSize,
RecvBufferCapacity: 4096,
RecvBufferCapacity: 128,
MaxSendBytes: 400,
},
},
@@ -52,7 +52,7 @@ var (
Priority: 3,
SendQueueCapacity: 4,
RecvMessageCapacity: chunkMsgSize,
RecvBufferCapacity: 4096,
RecvBufferCapacity: 128,
MaxSendBytes: 400,
},
},
@@ -63,7 +63,7 @@ var (
Priority: 2,
SendQueueCapacity: 10,
RecvMessageCapacity: lightBlockMsgSize,
RecvBufferCapacity: 4096,
RecvBufferCapacity: 128,
MaxSendBytes: 400,
},
},