update: mention that max-select-point checks every second (#1498).
parent
a53a6b4d02
commit
b817bfdd1b
|
@ -141,6 +141,8 @@ the following error:
|
||||||
```
|
```
|
||||||
ERR: max number of points reached
|
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
|
### max-select-series
|
||||||
|
|
||||||
|
|
|
@ -142,6 +142,8 @@ the following error:
|
||||||
```
|
```
|
||||||
ERR: max number of points reached
|
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
|
### max-select-series
|
||||||
|
|
||||||
|
|
|
@ -142,6 +142,8 @@ the following error:
|
||||||
```
|
```
|
||||||
ERR: max number of points reached
|
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
|
### max-select-series
|
||||||
|
|
||||||
|
|
|
@ -152,6 +152,9 @@ the following error:
|
||||||
ERR: max number of points reached
|
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`
|
### `max-select-series`
|
||||||
|
|
||||||
The maximum number of [series](/influxdb/v1.7/concepts/glossary/#series) that a
|
The maximum number of [series](/influxdb/v1.7/concepts/glossary/#series) that a
|
||||||
|
|
|
@ -151,6 +151,8 @@ the following error:
|
||||||
```
|
```
|
||||||
ERR: max number of points reached
|
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`
|
### `max-select-series`
|
||||||
|
|
||||||
|
|
|
@ -652,7 +652,7 @@ influxql-max-select-buckets = 0
|
||||||
### influxql-max-select-point
|
### influxql-max-select-point
|
||||||
Maximum number of points a `SELECT` statement can process.
|
Maximum number of points a `SELECT` statement can process.
|
||||||
`0` allows an unlimited number of points.
|
`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`
|
**Default:** `0`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue