Change streaming_socket_timeout_in_ms default

patch by Robert Coli; reviewed by Benjamin Lerer for CASSANDRA-8611
This commit is contained in:
Robert Coli 2015-08-26 15:16:47 +02:00 committed by blerer
parent 15293a73b8
commit 7e1ea4c8c1
3 changed files with 4 additions and 3 deletions

View File

@ -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)

View File

@ -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.

View File

@ -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;