From b353e4b981a7bab2597ddef77acc073ad7bcfcda Mon Sep 17 00:00:00 2001 From: Sharad Regoti Date: Tue, 25 Aug 2026 17:04:01 +0530 Subject: [PATCH] [DX-2353] Clarify max_record_size and omit_detailed_recording do not apply to aggregate pumps --- snippets/pump-config.mdx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/snippets/pump-config.mdx b/snippets/pump-config.mdx index 5c2e5d628..32d5808cd 100644 --- a/snippets/pump-config.mdx +++ b/snippets/pump-config.mdx @@ -2809,6 +2809,9 @@ Type: `bool`
Reduce the size of the traffic logs generated for each request by setting this to true. Tyk Pump will then not include the `raw_request` and `raw_response` in the logs. Defaults to `false`. +This setting has no effect on aggregate pumps (`mongo-pump-aggregate`, `sql_aggregate`), because +aggregated analytics records never include `raw_request` or `raw_response` data. + ### pumps.mongoaggregate.max_record_size ENV: TYK_PMP_PUMPS_MONGOAGGREGATE_MAXRECORDSIZE
Type: `int`
@@ -2826,6 +2829,9 @@ information. This can also be set at a pump level. For example: } ``` +This setting has no effect on aggregate pumps (`mongo-pump-aggregate`, `sql_aggregate`), because +aggregated analytics records never include `raw_request` or `raw_response` data. + ### pumps.mongoaggregate.ignore_fields ENV: TYK_PMP_PUMPS_MONGOAGGREGATE_IGNOREFIELDS
Type: `[]string`
@@ -4011,6 +4017,9 @@ Type: `bool`
Reduce the size of the traffic logs generated for each request by setting this to true. Tyk Pump will then not include the `raw_request` and `raw_response` in the logs. Defaults to `false`. +This setting has no effect on aggregate pumps (`mongo-pump-aggregate`, `sql_aggregate`), because +aggregated analytics records never include `raw_request` or `raw_response` data. + ### pumps.sqlaggregate.max_record_size ENV: TYK_PMP_PUMPS_SQLAGGREGATE_MAXRECORDSIZE
Type: `int`
@@ -4028,6 +4037,9 @@ information. This can also be set at a pump level. For example: } ``` +This setting has no effect on aggregate pumps (`mongo-pump-aggregate`, `sql_aggregate`), because +aggregated analytics records never include `raw_request` or `raw_response` data. + ### pumps.sqlaggregate.ignore_fields ENV: TYK_PMP_PUMPS_SQLAGGREGATE_IGNOREFIELDS
Type: `[]string`