[ARVADOS] updated: 637b32482c7fd0fc14197b120b3657793646216f
git at public.curoverse.com
git at public.curoverse.com
Tue Dec 15 09:54:51 EST 2015
Summary of changes:
sdk/python/arvados/keep.py | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
via 637b32482c7fd0fc14197b120b3657793646216f (commit)
from 6248a5d1b8561dec7298e20e2858cc003df5a763 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 637b32482c7fd0fc14197b120b3657793646216f
Author: Tom Clegg <tom at curoverse.com>
Date: Tue Dec 15 09:54:37 2015 -0500
Increase default Python SDK timeout to 256s.
No issue #
diff --git a/sdk/python/arvados/keep.py b/sdk/python/arvados/keep.py
index c584f04..4fa8a4f 100644
--- a/sdk/python/arvados/keep.py
+++ b/sdk/python/arvados/keep.py
@@ -230,13 +230,13 @@ class Counter(object):
class KeepClient(object):
# Default Keep server connection timeout: 2 seconds
- # Default Keep server read timeout: 64 seconds
+ # Default Keep server read timeout: 256 seconds
# Default Keep server bandwidth minimum: 32768 bytes per second
# Default Keep proxy connection timeout: 20 seconds
- # Default Keep proxy read timeout: 64 seconds
+ # Default Keep proxy read timeout: 256 seconds
# Default Keep proxy bandwidth minimum: 32768 bytes per second
- DEFAULT_TIMEOUT = (2, 64, 32768)
- DEFAULT_PROXY_TIMEOUT = (20, 64, 32768)
+ DEFAULT_TIMEOUT = (2, 256, 32768)
+ DEFAULT_PROXY_TIMEOUT = (20, 256, 32768)
class ThreadLimiter(object):
"""Limit the number of threads writing to Keep at once.
@@ -631,7 +631,7 @@ class KeepClient(object):
seconds. Because timeouts are often a result of transient server
load, the actual connection timeout will be increased by a factor
of two on each retry.
- Default: (2, 64, 32768).
+ Default: (2, 256, 32768).
:proxy_timeout:
The initial timeout (in seconds) for HTTP requests to
@@ -639,7 +639,7 @@ class KeepClient(object):
(connection_timeout, read_timeout, minimum_bandwidth). The behavior
described above for adjusting connection timeouts on retry also
applies.
- Default: (20, 64, 32768).
+ Default: (20, 256, 32768).
:api_token:
If you're not using an API client, but only talking
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list