From c9b89ad3955b1828b12ece18295e4f0541f3a397 Mon Sep 17 00:00:00 2001 From: Jean-Francois Smigielski Date: Thu, 20 Jul 2017 15:39:52 +0200 Subject: [PATCH 1/3] conf: Set the default chunk_size to 10MiB Only effective when no value is configured in the namespace. --- conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.json b/conf.json index 8a69fcc98f..eee35df5a9 100644 --- a/conf.json +++ b/conf.json @@ -131,7 +131,7 @@ { "type": "int64", "name": "oio_ns_chunk_size", "key": "ns.chunk_size", "descr": "Default chunk size for the given namespace.", - "def": "100Mi", "min": 1, "max": "max" }, + "def": "10Mi", "min": 1, "max": "max" }, { "type": "string", "name": "oio_ns_service_update_policy", "key": "ns.service_update_policy", From 261e92b96744c855aa5abb00e158c2fd265ac4bb Mon Sep 17 00:00:00 2001 From: Jean-Francois Smigielski Date: Thu, 20 Jul 2017 15:41:57 +0200 Subject: [PATCH 2/3] conf: Regenerate the documentation --- Variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Variables.md b/Variables.md index bcae8079f3..92c5ddabfb 100644 --- a/Variables.md +++ b/Variables.md @@ -352,7 +352,7 @@ Used by `gcc` > Default chunk size for the given namespace. - * default: **104857600** + * default: **10485760** * type: gint64 * cmake directive: *OIO_NS_CHUNK_SIZE* * range: 1 -> G_MAXINT64 From 92e408d3d9c12968bf71bb38f5f15623b8e1819b Mon Sep 17 00:00:00 2001 From: Jean-Francois SMIGIELSKI Date: Fri, 21 Jul 2017 11:27:49 +0200 Subject: [PATCH 3/3] Update the python requirements (eventlet versions) (#1094) * Update the python requirements (eventlet versions) Manages a known problem with python 2.7.13 and eventlet 0.21.0 * Add note about eventlet version requirements --- all-requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/all-requirements.txt b/all-requirements.txt index ad5c980f61..c51427f4eb 100644 --- a/all-requirements.txt +++ b/all-requirements.txt @@ -1,5 +1,6 @@ cliff>=2.0.0,<2.1.0 -eventlet>=0.15.2 +# This can be simplified when https://github.com/eventlet/eventlet/issues/401 is fixed +eventlet!=0.18.3,!=0.20.1,<0.21.0,>=0.18.2 requests<2.13.0 werkzeug>=0.9.1 redis>=2.10.3