diff --git a/conf/aggregator.prod.py b/conf/aggregator.prod.py index 4711ac9f..e5144021 100644 --- a/conf/aggregator.prod.py +++ b/conf/aggregator.prod.py @@ -58,10 +58,21 @@ zookeeper_prefix="/openeo/aggregator/", memoizer={ # See `memoizer_from_config` for more details - "type": "zookeeper", + "type": "chained", "config": { - "zk_hosts": ZK_HOSTS, - "default_ttl": 60 * 60, + "parts": [ + { + "type": "dict", + "config": {"default_ttl": 10 * 60} + }, + { + "type": "zookeeper", + "config": { + "zk_hosts": ZK_HOSTS, + "default_ttl": 60 * 60, + } + } + ] } },