Apply suggestions from code review
Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>pull/5573/head
parent
946b7a1f83
commit
57ed336ea2
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in New Issue