Apply suggestions from code review

Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
pull/5573/head
Jason Stirnaman 2024-08-20 16:44:44 -05:00 committed by GitHub
parent 946b7a1f83
commit 57ed336ea2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 13 additions and 9 deletions

View File

@ -61,11 +61,13 @@ and learn how to [analyze a query plan](/influxdb/cloud-dedicated/query-data/tro
#### Include a WHERE clause
InfluxDB v3 stores data in a Parquet file for each measurement and day, and
retrieves files from the Object store to answer a query.
InfluxDB v3 stores data in a Parquet file for each partition.
By default, {{< product-name >}} partitions tables by day, but you can also
[custom-partition your data](/influxdb/cloud-dedicated/admin/custom-partitions/).
At query time, InfluxDB retrieves files from the Object store to answer a query.
To reduce the number of files that a query needs to retrieve from the Object store,
include a [`WHERE` clause](/influxdb/cloud-dedicated/reference/sql/where/) that
filters data by a time range.
filters data by a time range or by specific tag values.
#### SELECT only columns you need

View File

@ -129,7 +129,7 @@ Each row must include a time column.
As a result, a table can have the following:
- a time column
- field and tag columns up to the configured maximum.
- field and tag columns up to the configured maximum
If you attempt to write to a table and exceed the column limit, then the write
request fails and InfluxDB returns an error.

View File

@ -109,7 +109,7 @@ Each row must include a time column.
As a result, a measurement can have the following:
- a time column
- field and tag columns up to the maximum number of columns.
- field and tag columns up to the maximum number of columns
If you attempt to write to a measurement and exceed the column limit, then the write
request fails and InfluxDB returns an error.

View File

@ -61,11 +61,13 @@ and learn how to [analyze a query plan](/influxdb/clustered/query-data/troublesh
#### Include a WHERE clause
InfluxDB v3 stores data in a Parquet file for each measurement and day, and
retrieves files from the Object store to answer a query.
InfluxDB v3 stores data in a Parquet file for each partition.
By default, {{< product-name >}} partitions tables by day, but you can also
[custom-partition your data](/influxdb/clustered/admin/custom-partitions/).
At query time, InfluxDB retrieves files from the Object store to answer a query.
To reduce the number of files that a query needs to retrieve from the Object store,
include a [`WHERE` clause](/influxdb/clustered/reference/sql/where/) that
filters data by a time range.
filters data by a time range or by specific tag values.
#### SELECT only columns you need

View File

@ -129,7 +129,7 @@ Each row must include a time column.
As a result, a table can have the following:
- a time column
- field and tag columns up to the configured maximum.
- field and tag columns up to the configured maximum
If you attempt to write to a table and exceed the column limit, then the write
request fails and InfluxDB returns an error.