Skip to content

Commit 2fee2eb

Browse files
authored
Merge branch 'master' into docs/5837-Enterprise-updates
2 parents 2460309 + ad394b9 commit 2fee2eb

File tree

22 files changed

+509
-59
lines changed

22 files changed

+509
-59
lines changed

content/influxdb/v2/api-guide/influxdb-1x/query.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ The following precisions are available:
150150
##### Query a non-default retention policy
151151

152152
<!--test:setup
153-
154153
```sh
155154
service influxdb start && \
156155
influx setup \
@@ -160,7 +159,6 @@ influx setup \
160159
--bucket BUCKET_NAME \
161160
--force || true
162161
```
163-
164162
-->
165163

166164
```sh

content/influxdb/v2/api-guide/influxdb-1x/write.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ The following precisions are available:
123123
##### Write data using basic authentication
124124

125125
<!--test:setup
126-
127126
```sh
128127
service influxdb start && \
129128
influx setup \
@@ -133,7 +132,6 @@ influx setup \
133132
--bucket BUCKET_NAME \
134133
--force || true
135134
```
136-
137135
-->
138136

139137
{{% oss-only %}}

content/influxdb/v2/install/_index.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ To use the SHA checksum to verify the downloaded file, do the following:
6666
the **SHA256:** checksum value.
6767

6868
2. Compute the SHA checksum of the downloaded file and compare it to the
69-
published checksum--for example, enter the following command in your terminal.
69+
published checksum--for example, enter the following command in your terminal:
7070

7171
<!--test:actual
7272
```bash
@@ -77,19 +77,19 @@ To use the SHA checksum to verify the downloaded file, do the following:
7777

7878
<!--pytest-codeblocks:cont-->
7979

80-
{{% code-placeholders "9cb54d3940c37a8c2a908458543e629412505cc71db55094147fd39088b99c6c" %}}
80+
{{% code-placeholders "8d7872013cad3524fb728ca8483d0adc30125ad1af262ab826dcf5d1801159cf" %}}
8181

8282
```bash
8383
# Use 2 spaces to separate the checksum from the filename
84-
echo "9cb54d3940c37a8c2a908458543e629412505cc71db55094147fd39088b99c6c influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz" \
84+
echo "8d7872013cad3524fb728ca8483d0adc30125ad1af262ab826dcf5d1801159cf influxdb2-{{< latest-patch >}}_linux_amd64.tar.gz" \
8585
| sha256sum --check -
8686
```
8787

8888
{{% /code-placeholders %}}
8989

9090
Replace the following:
9191

92-
- {{% code-placeholder-key %}}`9cb54d3940c37a8c2a908458543e629412505cc71db55094147fd39088b99c6c`{{% /code-placeholder-key %}}:
92+
- {{% code-placeholder-key %}}`8d7872013cad3524fb728ca8483d0adc30125ad1af262ab826dcf5d1801159cf`{{% /code-placeholder-key %}}:
9393
the **SHA256:** checksum value that you copied from the downloads page
9494

9595
If the checksums match, the output is the following; otherwise, an error message.
@@ -162,12 +162,10 @@ gpg: key 7C3D57159FC2F927: public key "InfluxData Package Signing Key <support@i
162162
following in your terminal:
163163

164164
<!--test:setup
165-
166165
```sh
167166
curl --silent --location --output-dir ~/Downloads -O \
168167
"https://download.influxdata.com/influxdb/releases/influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz" \
169168
```
170-
171169
-->
172170

173171
```sh
@@ -252,19 +250,19 @@ brew install influxdb
252250
2. {{< req text="Recommended:" color="magenta" >}}: Verify the integrity of the download--for example, enter the
253251
following command in your terminal:
254252

255-
{{% code-placeholders "964e1de641a43a0e1743aa5ead243e935a05631ba0bc570fb8bff486542173c1" %}}
253+
{{% code-placeholders "224926fd77736a364cf28128f18927dda00385f0b6872a108477246a1252ae1b" %}}
256254

257255
```sh
258256
# Use 2 spaces to separate the checksum from the filename
259-
echo "964e1de641a43a0e1743aa5ead243e935a05631ba0bc570fb8bff486542173c1 influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz" \
257+
echo "224926fd77736a364cf28128f18927dda00385f0b6872a108477246a1252ae1b influxdb2-{{< latest-patch >}}_darwin_amd64.tar.gz" \
260258
| shasum --algorithm 256 --quiet --check -
261259
```
262260

263261
{{% /code-placeholders %}}
264262

265263
Replace the following:
266264

267-
- {{% code-placeholder-key %}}`964e1de641a43a0e1743aa5ead243e935a05631ba0bc570fb8bff486542173c1`{{% /code-placeholder-key %}}: the SHA checksum from the [downloads page](https://www.influxdata.com/downloads/#telegraf)
265+
- {{% code-placeholder-key %}}`224926fd77736a364cf28128f18927dda00385f0b6872a108477246a1252ae1b`{{% /code-placeholder-key %}}: the SHA checksum from the [downloads page](https://www.influxdata.com/downloads/#telegraf)
268266

269267
3. Unpackage the InfluxDB binary.
270268

content/influxdb/v2/reference/config-options.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Use the [`influx server-config` command](/influxdb/v2/reference/cli/influx/serve
3535
to retrieve your runtime server configuration.
3636

3737
<!--test:setup
38-
3938
```sh
4039
service influxdb start && \
4140
influx setup \
@@ -45,7 +44,6 @@ influx setup \
4544
--bucket BUCKET_NAME \
4645
--force || true
4746
```
48-
4947
-->
5048

5149
```sh
@@ -2748,7 +2746,7 @@ storage-wal-max-concurrent-writes = 0
27482746

27492747
### storage-wal-max-write-delay
27502748
Maximum amount of time a write request to the WAL directory will wait when the
2751-
the [maximum number of concurrent active writes to the WAL directory](#storage-wal-max-concurrent-writes)
2749+
[maximum number of concurrent active writes to the WAL directory](#storage-wal-max-concurrent-writes)
27522750
has been met. Set to `0` to disable the timeout.
27532751

27542752
**Default:** `10m`

content/influxdb3/core/admin/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ source: /shared/influxdb3-admin/_index.md
1111
---
1212

1313
<!--
14-
The content of this file is located at content/shared/influxdb3-admin/_index.md
14+
The content of this file is located at
15+
// SOURCE content/shared/influxdb3-admin/_index.md
1516
-->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: Query system data
3+
description: |
4+
Query system tables to see data related
5+
to the server, queries, and tables in an {{% product-name %}} instance.
6+
Use the HTTP SQL query API to retrieve information about your database server
7+
and table schemas.
8+
menu:
9+
influxdb3_core:
10+
name: Query system data
11+
parent: Administer InfluxDB
12+
weight: 3
13+
influxdb3/core/tags: [query, api, system information, schemas]
14+
related:
15+
- /influxdb3/core/query-data/sql/
16+
- /influxdb3/core/query-data/execute-queries/
17+
source: /shared/influxdb3-admin/query-system-data/_index.md
18+
---
19+
20+
<!--
21+
The content of this page is at
22+
// SOURCE content/shared/influxdb3-admin/query-system-data/_index.md
23+
-->

content/influxdb3/core/get-started/_index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ menu:
99
influxdb3_core:
1010
name: Get started
1111
weight: 3
12+
related:
13+
- /influxdb3/core/admin/query-system-data/
1214
source: /shared/v3-core-get-started/_index.md
1315
---
1416

1517
<!--
16-
The content of this page is at /shared/v3-core-get-started/_index.md
18+
The content of this page is at
19+
// SOURCE content/shared/v3-core-get-started/_index.md
1720
-->

content/influxdb3/core/install.md

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ Use the InfluxDB 3 quick install script to install {{< product-name >}} on
4444
{{< product-name >}} package on your local machine:
4545

4646
```bash
47-
curl -O https://www.influxdata.com/d/install_influxdb3.sh && sh install_influxdb3.sh
47+
curl -O https://www.influxdata.com/d/install_influxdb3.sh \
48+
&& sh install_influxdb3.sh
4849
```
4950

5051
2. Verify that installation completed successfully:
@@ -93,18 +94,10 @@ source ~/.zshrc
9394
9495
[sha256](https://dl.influxdata.com/influxdb/snapshots/influxdb3-core_x86_64-unknown-linux-gnu.tar.gz.sha256)
9596
96-
- [InfluxDB 3 Core • Linux (x86) • MUSL](https://download.influxdata.com/influxdb/snapshots/influxdb3-core_x86_64-unknown-linux-musl.tar.gz)
97-
98-
[sha256](https://dl.influxdata.com/influxdb/snapshots/influxdb3-core_x86_64-unknown-linux-musl.tar.gz.sha256)
99-
10097
- [InfluxDB 3 Core • Linux (ARM) • GNU](https://download.influxdata.com/influxdb/snapshots/influxdb3-core_aarch64-unknown-linux-gnu.tar.gz)
10198
10299
[sha256](https://dl.influxdata.com/influxdb/snapshots/influxdb3-core_aarch64-unknown-linux-gnu.tar.gz.sha256)
103100
104-
- [InfluxDB 3 Core • Linux (ARM) • MUSL](https://download.influxdata.com/influxdb/snapshots/influxdb3-core_aarch64-unknown-linux-musl.tar.gz)
105-
106-
[sha256](https://dl.influxdata.com/influxdb/snapshots/influxdb3-core_aarch64-unknown-linux-musl.tar.gz)
107-
108101
<!--------------------------------- END LINUX --------------------------------->
109102
110103
{{% /tab-content %}}
@@ -139,9 +132,28 @@ source ~/.zshrc
139132
140133
Use the `influxdb3-core` Docker image to deploy {{< product-name >}} in a
141134
Docker container.
135+
The image is available for x86_64 (AMD64) and ARM64 architectures.
142136
143137
```bash
144138
docker pull quay.io/influxdb/influxdb3-core:latest
145139
```
146140
141+
Docker automatically pulls the appropriate image for your system architecture.
142+
143+
You can also explicitly specify the architecture by using platform-specific tags:
144+
145+
```bash
146+
# For x86_64/AMD64
147+
docker pull \
148+
--platform linux/amd64 \
149+
quay.io/influxdb/influxdb3-core:latest
150+
```
151+
152+
```bash
153+
# For ARM64
154+
docker pull \
155+
--platform linux/arm64 \
156+
quay.io/influxdb/influxdb3-core:latest
157+
```
158+
147159
{{< page-nav next="/influxdb3/core/get-started/" nextText="Get started with InfluxDB 3 Core" >}}

content/influxdb3/core/plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Use the Python processing engine to trigger and execute custom code
44
menu:
55
influxdb3_core:
66
name: Processing Engine and Python Plugins
7-
weight: 2
7+
weight: 4
88
influxdb3/core/tags: []
99
source: /shared/v3-core-plugins/_index.md
1010
---
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: Use the InfluxDB v3 HTTP query API
3+
seotitle: Use SQL or InfluxQL and InfluxDB v3 HTTP query API
4+
list_title: Use the v3 query API
5+
description: >
6+
Use SQL or InfluxQL and the InfluxDB v3 HTTP query API to query data in {{< product-name >}}.
7+
weight: 301
8+
menu:
9+
influxdb3_core:
10+
parent: Execute queries
11+
name: Use the v3 query API
12+
influxdb3/core/tags: [query, influxql, sql, python]
13+
metadata: [InfluxQL, SQL]
14+
related:
15+
- /influxdb3/core/api-compatibility/v1/
16+
list_code_example: |
17+
```sh
18+
curl --get http://{{< influxdb/host >}}/api/v3/query_sql \
19+
--header "Authorization: Token DATABASE_TOKEN" \
20+
--data-urlencode "db=DATABASE_NAME" \
21+
--data-urlencode "q=SELECT * FROM home"
22+
```
23+
source: /shared/influxdb3-query-guides/execute-queries/influxdb3-api.md
24+
---
25+
26+
<!--
27+
The content for this page is at
28+
// SOURCE content/shared/influxdb3-query-guides/execute-queries/influxdb3-api.md
29+
-->

0 commit comments

Comments
 (0)