From 5e8b6d04da5e899b6d3da35a169ad15d4ae643fb Mon Sep 17 00:00:00 2001 From: Dan <22e889d8@opayq.com> Date: Wed, 8 Feb 2017 13:08:10 +0000 Subject: [PATCH] Updated loader limit default to be 10k - influxdb 1.2 silently truncates series lists over 10k --- influxgraph/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influxgraph/constants.py b/influxgraph/constants.py index 18fe19b..7ae564a 100644 --- a/influxgraph/constants.py +++ b/influxgraph/constants.py @@ -34,7 +34,7 @@ _INFLUXDB_CLIENT_PARAMS = {'epoch': 's'} SERIES_LOADER_MUTEX_KEY = 'influxgraph_series_loader' MEMCACHE_SERIES_DEFAULT_TTL = 1800 -LOADER_LIMIT = 100000 +LOADER_LIMIT = 10000 # Fill params like 'null' that leave gaps are not valid for use with Graphite # API and are purposefully not included here FILL_PARAMS = ['previous', 'linear']