summaryrefslogtreecommitdiffstats
path: root/collectors
diff options
context:
space:
mode:
authorCosta Tsaousis <costa@netdata.cloud>2023-12-21 17:21:56 +0200
committerGitHub <noreply@github.com>2023-12-21 17:21:56 +0200
commit8dac5a52bb0e14320fa8fe4a24b9af4fc419fad1 (patch)
tree4f921683af0159f3c1a9db018dd0a3da63707251 /collectors
parent91989d191c1c933d1a46206ca74c6eec5e908d70 (diff)
increase max response size to 100MiB (#16649)
* increase max response size to 100MiB * do not check the uncompressed message size on aclk
Diffstat (limited to 'collectors')
-rw-r--r--collectors/plugins.d/pluginsd_parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/collectors/plugins.d/pluginsd_parser.h b/collectors/plugins.d/pluginsd_parser.h
index cae7560fed..7b1002f136 100644
--- a/collectors/plugins.d/pluginsd_parser.h
+++ b/collectors/plugins.d/pluginsd_parser.h
@@ -11,7 +11,7 @@
#define WORKER_RECEIVER_JOB_REPLICATION_COMPLETION (WORKER_PARSER_FIRST_JOB - 3)
// this controls the max response size of a function
-#define PLUGINSD_MAX_DEFERRED_SIZE (20 * 1024 * 1024)
+#define PLUGINSD_MAX_DEFERRED_SIZE (100 * 1024 * 1024)
#define PLUGINSD_MIN_RRDSET_POINTERS_CACHE 1024