From 93b73b064c663d6248bebfbbbd82989b5ca10fc5 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 21 Nov 2012 00:28:00 +0100 Subject: journal: by default do not decompress dat objects larger than 64K This introduces a new data threshold setting for sd_journal objects which controls the maximum size of objects to decompress. This is relieves the library from having to decompress full data objects even if a client program is only interested in the initial part of them. This speeds up "systemd-coredumpctl" drastically when invoked without parameters. --- src/journal/journal-internal.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/journal/journal-internal.h') diff --git a/src/journal/journal-internal.h b/src/journal/journal-internal.h index 75a4129e5b..97de0e75ff 100644 --- a/src/journal/journal-internal.h +++ b/src/journal/journal-internal.h @@ -121,6 +121,8 @@ struct sd_journal { uint64_t unique_offset; bool on_network; + + size_t data_threshold; }; char *journal_make_match_string(sd_journal *j); -- cgit v1.2.3-54-g00ecf