diff --git a/prometheus_client/mmap_dict.py b/prometheus_client/mmap_dict.py index e8b2df9e..5c8e0fbd 100644 --- a/prometheus_client/mmap_dict.py +++ b/prometheus_client/mmap_dict.py @@ -3,7 +3,7 @@ import os import struct -_INITIAL_MMAP_SIZE = 1 << 20 +_INITIAL_MMAP_SIZE = 1 << 16 _pack_integer_func = struct.Struct(b'i').pack _pack_double_func = struct.Struct(b'd').pack _unpack_integer = struct.Struct(b'i').unpack_from