Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rahulEth/1b3a6b195b3ce0fedb8249619e47bd2d to your computer and use it in GitHub Desktop.
Save rahulEth/1b3a6b195b3ce0fedb8249619e47bd2d to your computer and use it in GitHub Desktop.
Hyperledger Fabric

ERRO 7863 Failed to send StepRequest to 5, because: send queue overflown

Solution:

 in the orderer cluster config there is secret parameter SendBufferSize.
 SendBufferSize is the maximum number of messages in the egress buffer.
 Consensus messages are dropped if the buffer is full, and transaction
messages are waiting for space to be freed.
 increases it to 100.
ORDERER_GENERAL_CLUSTER_SENDBUFFERSIZE=100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment