Hi Jean,
Ensure that your firewall is not timing out idle connections. Nodes should time
out idle connections first (using tcp keep alive settings before firewall does
it). Please refer
http://docs.datastax.com/en/archived/cassandra/2.0/cassandra/troubleshooting/trblshootIdleFirewall.html.
T
On 2017-07-04 07:11 (-0700), Jean Carlo wrote:
> Hello.
>
> What if a node send a merkle tree to its replica but this one would never
> received by any network issues. The repair will be hanging eternally ? or
> Should I modify the parameter
> # streaming_socket_timeout_in_ms: 0 to avoid this
The actually MerkleTree itself is at org.apache.cassandra.utils.MerkleTree: it
has a reasonable number of tests in the MerkleTreeTest class, and Cassandra
uses a tree to store the hashes of a ColumnFamily in o.a.c.d.CompactionManager
via a o.a.c.s.AntiEntropyService "Validator".
-Original