Skip to content

Commit 4a00926

Browse files
committed
fix(v3): Apply suggestions from @sanderson
1 parent 4dc2033 commit 4a00926

File tree

6 files changed

+34
-22
lines changed

6 files changed

+34
-22
lines changed

content/influxdb/cloud-dedicated/admin/databases/_index.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ related:
1717
alt_links:
1818
cloud: /influxdb/cloud/admin/buckets/
1919
cloud_serverless: /influxdb/cloud-serverless/admin/buckets/
20-
clustered: /influxdb/clustered/admin/databases/
20+
clustered: /influxdb/cloud-dedicated/admin/databases/
2121
oss: /influxdb/v2/admin/buckets/
2222
---
2323

@@ -103,24 +103,27 @@ operating cost of your cluster.
103103

104104
**Default maximum number of columns**: 250
105105

106+
**Configurable maximum number of columns**: 1000
107+
106108
Each row must include a time column, with the remaining columns representing
107109
tags and fields.
108-
As a result, a table can have one time column and up to 249 field and tag columns.
110+
As a result, a table with 250 columns can have one time column and up to
111+
249 field and tag columns.
109112

110113
If you attempt to write to a table and exceed the column limit, the write
111114
request fails and InfluxDB returns an error.
112115

113-
When creating or updating a database, you can configure the table column limit to be
114-
lower than the default or up to 1000, based on your requirements.
115-
After you update the column limit for a database, the limit applies to newly
116-
created tables; it doesn't override the column limit for existing tables.
116+
If you update the column limit for a database, the limit applies to newly
117+
created tables; doesn't override the column limit for existing tables.
117118

118119
Increasing your column limit affects your {{% product-name omit=" Clustered" %}}
119120
cluster in the following ways:
120121

121122
{{< expand-wrapper >}}
122123
{{% expand "May adversely affect system performance" %}}
123124

125+
When creating or updating a database, you can configure the table column limit to be
126+
lower than the default or up to 1000, based on your requirements.
124127
InfluxData identified 250 columns as the safe limit for maintaining system
125128
performance and stability.
126129
Exceeding this threshold can result in

content/influxdb/cloud-dedicated/admin/databases/update.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,11 @@ to update a database in your {{< product-name omit=" Clustered" >}} cluster.
5757

5858
- Database name
5959
- _Optional_: Database [retention period](/influxdb/cloud-dedicated/admin/databases/#retention-periods).
60-
Default is infinite (`0`).
61-
- _Optional_: Database table (measurement) limit. Default is `500`.
62-
- _Optional_: Database column limit. Default is `250`.
60+
Default is infinite (`0`).
61+
- _Optional_: Database [table (measurement) limit](/influxdb/cloud-dedicated/admin/databases/#table-limit).
62+
Default is `500`.
63+
- _Optional_: Database [column limit](/influxdb/cloud-dedicated/admin/databases/#column-limit).
64+
Default is `250`.
6365

6466
{{% code-placeholders "DATABASE_NAME|30d|500|200" %}}
6567

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,9 @@ As a result, a table can have the following:
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.
136136

137-
InfluxData identified the default maximum as the safe limit for maintaining system
138-
performance and stability.
137+
InfluxData identified the
138+
[default maximum](/influxdb/cloud-dedicated/admin/databases/#column-limit)
139+
as the safe limit for maintaining system performance and stability.
139140
Exceeding this threshold can result in
140141
[wide schemas](#avoid-wide-schemas), which can negatively impact performance
141142
and resource use, [depending on your queries](#avoid-non-specific-queries),

content/influxdb/clustered/admin/databases/_index.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,24 +103,27 @@ operating cost of your cluster.
103103

104104
**Default maximum number of columns**: 250
105105

106+
**Configurable maximum number of columns**: 1000
107+
106108
Each row must include a time column, with the remaining columns representing
107109
tags and fields.
108-
As a result, a table can have one time column and up to 249 field and tag columns.
110+
As a result, a table with 250 columns can have one time column and up to
111+
249 field and tag columns.
109112

110113
If you attempt to write to a table and exceed the column limit, the write
111114
request fails and InfluxDB returns an error.
112115

113-
When creating or updating a database, you can configure the table column limit to be
114-
lower than the default or up to 1000, based on your requirements.
115-
After you update the column limit for a database, the limit applies to newly
116-
created tables; it doesn't override the column limit for existing tables.
116+
If you update the column limit for a database, the limit applies to newly
117+
created tables; doesn't override the column limit for existing tables.
117118

118119
Increasing your column limit affects your {{% product-name omit=" Clustered" %}}
119120
cluster in the following ways:
120121

121122
{{< expand-wrapper >}}
122123
{{% expand "May adversely affect system performance" %}}
123124

125+
When creating or updating a database, you can configure the table column limit to be
126+
lower than the default or up to 1000, based on your requirements.
124127
InfluxData identified 250 columns as the safe limit for maintaining system
125128
performance and stability.
126129
Exceeding this threshold can result in

content/influxdb/clustered/admin/databases/update.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@ to update a database in your {{< product-name omit=" Clustered" >}} cluster.
2626
2. Run the `influxctl database update` command and provide the following:
2727

2828
- Database name
29-
- _Optional_: Database [retention period](/influxdb/cloud-dedicated/admin/databases/#retention-periods).
30-
Default is infinite (`0`).
31-
- _Optional_: Database table (measurement) limit. Default is `500`.
32-
- _Optional_: Database column limit. Default is `250`.
29+
- _Optional_: Database [retention period](/influxdb/clustered/admin/databases/#retention-periods).
30+
Default is infinite (`0`).
31+
- _Optional_: Database [table (measurement) limit](/influxdb/clustered/admin/databases/#table-limit).
32+
Default is `500`.
33+
- _Optional_: Database [column limit](/influxdb/clustered/admin/databases/#column-limit).
34+
Default is `250`.
3335

3436
{{% code-placeholders "DATABASE_NAME|30d|500|200" %}}
3537

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,9 @@ As a result, a table can have the following:
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.
136136

137-
InfluxData identified the default maximum as the safe limit for maintaining system
138-
performance and stability.
137+
InfluxData identified the
138+
[default maximum](/influxdb/clustered/admin/databases/#column-limit)
139+
as the safe limit for maintaining system performance and stability.
139140
Exceeding this threshold can result in
140141
[wide schemas](#avoid-wide-schemas), which can negatively impact performance
141142
and resource use, [depending on your queries](#avoid-non-specific-queries),

0 commit comments

Comments
 (0)