From 07f32b503b11d6cad081d6e572d051e07c3eb3b7 Mon Sep 17 00:00:00 2001 From: Mat Date: Tue, 10 Nov 2020 13:14:18 +0100 Subject: [PATCH] Add thread pool to sample application conf --- conf/application.sample | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/conf/application.sample b/conf/application.sample index 547a1273c6..d8eaf067c4 100644 --- a/conf/application.sample +++ b/conf/application.sample @@ -245,3 +245,14 @@ misp { # purpose = ImportAndExport #} ## <-- Uncomment to complete the configuration } + +misp-thread-pool { + fork-join-executor { + # Min number of threads available for MISP synchronization + parallelism-min = 2 + # Parallelism (threads) ... ceil(available processors * factor) + parallelism-factor = 2.0 + # Max number of threads available for MISP synchronization + parallelism-max = 4 + } +}