mirror of https://github.com/apache/cassandra
Change streaming_socket_timeout_in_ms default
patch by Robert Coli; reviewed by Benjamin Lerer for CASSANDRA-8611
This commit is contained in:
parent
15293a73b8
commit
7e1ea4c8c1
|
|
@ -1,4 +1,5 @@
|
|||
2.1.10
|
||||
* Change streaming_socket_timeout_in_ms default to 1 hour (CASSANDRA-8611)
|
||||
* (cqlsh) update list of CQL keywords (CASSANDRA-9232)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -633,8 +633,8 @@ cross_node_timeout: false
|
|||
# When a timeout occurs during streaming, streaming is retried from the start
|
||||
# of the current file. This _can_ involve re-streaming an important amount of
|
||||
# data, so you should avoid setting the value too low.
|
||||
# Default value is 0, which never timeout streams.
|
||||
# streaming_socket_timeout_in_ms: 0
|
||||
# Default value is 3600000, which means streams timeout after an hour.
|
||||
# streaming_socket_timeout_in_ms: 3600000
|
||||
|
||||
# phi value that must be reached for a host to be marked down.
|
||||
# most users should never need to adjust this.
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ public class Config
|
|||
|
||||
public volatile Long truncate_request_timeout_in_ms = 60000L;
|
||||
|
||||
public Integer streaming_socket_timeout_in_ms = 0;
|
||||
public Integer streaming_socket_timeout_in_ms = 3600000;
|
||||
|
||||
public boolean cross_node_timeout = false;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue