From b817bfdd1b6a1ab1036a0ab8d32a3e246d597dfa Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Thu, 13 May 2021 10:08:55 -0500 Subject: [PATCH] update: mention that max-select-point checks every second (#1498). --- content/influxdb/v1.4/troubleshooting/query_management.md | 2 ++ content/influxdb/v1.5/troubleshooting/query_management.md | 2 ++ content/influxdb/v1.6/troubleshooting/query_management.md | 2 ++ content/influxdb/v1.7/troubleshooting/query_management.md | 3 +++ content/influxdb/v1.8/troubleshooting/query_management.md | 2 ++ content/influxdb/v2.0/reference/config-options.md | 2 +- 6 files changed, 12 insertions(+), 1 deletion(-) diff --git a/content/influxdb/v1.4/troubleshooting/query_management.md b/content/influxdb/v1.4/troubleshooting/query_management.md index 108d9c74d..d6318da1c 100644 --- a/content/influxdb/v1.4/troubleshooting/query_management.md +++ b/content/influxdb/v1.4/troubleshooting/query_management.md @@ -141,6 +141,8 @@ the following error: ``` ERR: max number of points reached ``` +InfluxDB checks the point count every second (so queries exceeding the maximum aren’t immediately aborted). + ### max-select-series diff --git a/content/influxdb/v1.5/troubleshooting/query_management.md b/content/influxdb/v1.5/troubleshooting/query_management.md index 89c5400f3..c33f0c833 100644 --- a/content/influxdb/v1.5/troubleshooting/query_management.md +++ b/content/influxdb/v1.5/troubleshooting/query_management.md @@ -142,6 +142,8 @@ the following error: ``` ERR: max number of points reached ``` +InfluxDB checks the point count every second (so queries exceeding the maximum aren’t immediately aborted). + ### max-select-series diff --git a/content/influxdb/v1.6/troubleshooting/query_management.md b/content/influxdb/v1.6/troubleshooting/query_management.md index 99d970aef..687845160 100644 --- a/content/influxdb/v1.6/troubleshooting/query_management.md +++ b/content/influxdb/v1.6/troubleshooting/query_management.md @@ -142,6 +142,8 @@ the following error: ``` ERR: max number of points reached ``` +InfluxDB checks the point count every second (so queries exceeding the maximum aren’t immediately aborted). + ### max-select-series diff --git a/content/influxdb/v1.7/troubleshooting/query_management.md b/content/influxdb/v1.7/troubleshooting/query_management.md index dd6d160fc..e0bca0d0e 100644 --- a/content/influxdb/v1.7/troubleshooting/query_management.md +++ b/content/influxdb/v1.7/troubleshooting/query_management.md @@ -152,6 +152,9 @@ the following error: ERR: max number of points reached ``` +InfluxDB checks the point count every second (so queries exceeding the maximum aren’t immediately aborted). + + ### `max-select-series` The maximum number of [series](/influxdb/v1.7/concepts/glossary/#series) that a diff --git a/content/influxdb/v1.8/troubleshooting/query_management.md b/content/influxdb/v1.8/troubleshooting/query_management.md index 6df674fe3..247a30425 100644 --- a/content/influxdb/v1.8/troubleshooting/query_management.md +++ b/content/influxdb/v1.8/troubleshooting/query_management.md @@ -151,6 +151,8 @@ the following error: ``` ERR: max number of points reached ``` +InfluxDB checks the point count every second (so queries exceeding the maximum aren’t immediately aborted). + ### `max-select-series` diff --git a/content/influxdb/v2.0/reference/config-options.md b/content/influxdb/v2.0/reference/config-options.md index 8c89356dd..4a7a7de0e 100644 --- a/content/influxdb/v2.0/reference/config-options.md +++ b/content/influxdb/v2.0/reference/config-options.md @@ -652,7 +652,7 @@ influxql-max-select-buckets = 0 ### influxql-max-select-point Maximum number of points a `SELECT` statement can process. `0` allows an unlimited number of points. -This is only checked every second so queries will not be aborted immediately when hitting the limit. +InfluxDB checks the point count every second (so queries exceeding the maximum aren’t immediately aborted). **Default:** `0`