From 19b67e4551335785bc30020d5f9afc62867eceff Mon Sep 17 00:00:00 2001 From: Thulinma Date: Wed, 9 Nov 2016 12:38:05 +0100 Subject: [PATCH] Updated default live metadata page size to 16MiB, to allow for bigger streams --- lib/defines.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/defines.h b/lib/defines.h index b034336f..e9d5c40e 100644 --- a/lib/defines.h +++ b/lib/defines.h @@ -71,11 +71,8 @@ static const char * DBG_LVL_LIST[] = {"NONE", "FAIL", "ERROR", "WARN", "INFO", " #define INPUT_TIMEOUT STATS_DELAY #endif -/// The size used for stream header pages under Windows, where they cannot be size-detected. -#define DEFAULT_META_PAGE_SIZE 16 * 1024 * 1024 - -/// The size used for stream header pages under Windows, where they cannot be size-detected. -#define DEFAULT_STRM_PAGE_SIZE 4 * 1024 * 1024 +/// The size used for stream headers for live streams +#define DEFAULT_STRM_PAGE_SIZE 16 * 1024 * 1024 /// The size used for stream data pages under Windows, where they cannot be size-detected. #define DEFAULT_DATA_PAGE_SIZE SHM_DATASIZE * 1024 * 1024