Skip to content

Commit 57ed336

Browse files
Apply suggestions from code review
Co-authored-by: Scott Anderson <[email protected]>
1 parent 946b7a1 commit 57ed336

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

content/influxdb/cloud-dedicated/query-data/troubleshoot-and-optimize/optimize-queries.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,13 @@ and learn how to [analyze a query plan](/influxdb/cloud-dedicated/query-data/tro
6161

6262
#### Include a WHERE clause
6363

64-
InfluxDB v3 stores data in a Parquet file for each measurement and day, and
65-
retrieves files from the Object store to answer a query.
64+
InfluxDB v3 stores data in a Parquet file for each partition.
65+
By default, {{< product-name >}} partitions tables by day, but you can also
66+
[custom-partition your data](/influxdb/cloud-dedicated/admin/custom-partitions/).
67+
At query time, InfluxDB retrieves files from the Object store to answer a query.
6668
To reduce the number of files that a query needs to retrieve from the Object store,
6769
include a [`WHERE` clause](/influxdb/cloud-dedicated/reference/sql/where/) that
68-
filters data by a time range.
70+
filters data by a time range or by specific tag values.
6971

7072
#### SELECT only columns you need
7173

content/influxdb/cloud-dedicated/write-data/best-practices/schema-design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Each row must include a time column.
129129
As a result, a table can have the following:
130130

131131
- a time column
132-
- field and tag columns up to the configured maximum.
132+
- field and tag columns up to the configured maximum
133133

134134
If you attempt to write to a table and exceed the column limit, then the write
135135
request fails and InfluxDB returns an error.

content/influxdb/cloud-serverless/write-data/best-practices/schema-design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Each row must include a time column.
109109
As a result, a measurement can have the following:
110110

111111
- a time column
112-
- field and tag columns up to the maximum number of columns.
112+
- field and tag columns up to the maximum number of columns
113113

114114
If you attempt to write to a measurement and exceed the column limit, then the write
115115
request fails and InfluxDB returns an error.

content/influxdb/clustered/query-data/troubleshoot-and-optimize/optimize-queries.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,13 @@ and learn how to [analyze a query plan](/influxdb/clustered/query-data/troublesh
6161

6262
#### Include a WHERE clause
6363

64-
InfluxDB v3 stores data in a Parquet file for each measurement and day, and
65-
retrieves files from the Object store to answer a query.
64+
InfluxDB v3 stores data in a Parquet file for each partition.
65+
By default, {{< product-name >}} partitions tables by day, but you can also
66+
[custom-partition your data](/influxdb/clustered/admin/custom-partitions/).
67+
At query time, InfluxDB retrieves files from the Object store to answer a query.
6668
To reduce the number of files that a query needs to retrieve from the Object store,
6769
include a [`WHERE` clause](/influxdb/clustered/reference/sql/where/) that
68-
filters data by a time range.
70+
filters data by a time range or by specific tag values.
6971

7072
#### SELECT only columns you need
7173

content/influxdb/clustered/write-data/best-practices/schema-design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Each row must include a time column.
129129
As a result, a table can have the following:
130130

131131
- a time column
132-
- field and tag columns up to the configured maximum.
132+
- field and tag columns up to the configured maximum
133133

134134
If you attempt to write to a table and exceed the column limit, then the write
135135
request fails and InfluxDB returns an error.

0 commit comments

Comments
 (0)