Skip to content

Commit c8a7799

Browse files
authored
Merge pull request #5975 from influxdata/jts-fix-monolith
Jts fix monolith
2 parents 2a4781a + ef45c7c commit c8a7799

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

content/influxdb3/enterprise/admin/databases/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ source: /shared/influxdb3-admin/databases/_index.md
2121
---
2222

2323
<!--
24-
The content of this file is located at content/shared/influxdb3-admin/databases/_index.md
24+
The content of this file is located at
25+
// SOURCE content/shared/influxdb3-admin/databases/_index.md
2526
-->

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ source: /shared/v3-enterprise-get-started/_index.md
1818

1919
<!--
2020
The content of this page is at
21-
// SOURCE content/shared/v3-enterprise-get-started/_index.md_index.md
21+
// SOURCE content/shared/v3-enterprise-get-started/_index.md
2222
-->

content/shared/v3-core-get-started/_index.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,12 @@ and provide the following:
132132
InfluxDB supports the following: local file system (`file`), `memory`,
133133
S3 (and compatible services like Ceph or Minio) (`s3`),
134134
Google Cloud Storage (`google`), and Azure Blob Storage (`azure`).
135-
- `--node-id`: A string identifier that determines the server's storage path
136-
within the configured storage location, and, in a multi-node setup, is used to reference the node.
135+
The default is `file`.
136+
Depending on the object store type, you may need to provide additional options
137+
for your object store configuration.
138+
- `--node-id`: A string identifier that distinguishes individual server instances within the cluster.
139+
This forms the final part of the storage path: `<CONFIGURED_PATH>/<NODE_ID>`.
140+
In a multi-node setup, this ID is used to reference specific nodes.
137141

138142
> [!Note]
139143
> #### Diskless architecture
@@ -176,7 +180,6 @@ To run the [Docker image](/influxdb3/core/install/#docker-image) and persist dat
176180
# Filesystem object store with Docker
177181
# Create a mount
178182
# Provide the mount path
179-
180183
docker run -it \
181184
-v /path/on/host:/path/in/container \
182185
quay.io/influxdb/influxdb3-core:latest serve \

content/shared/v3-enterprise-get-started/_index.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,14 @@ and provide the following:
131131
InfluxDB supports the following: local file system (`file`), `memory`,
132132
S3 (and compatible services like Ceph or Minio) (`s3`),
133133
Google Cloud Storage (`google`), and Azure Blob Storage (`azure`).
134-
- `--node-id`: A string identifier that determines the server's storage path
135-
within the configured storage location, and, in a multi-node setup, is used to reference the node.
134+
The default is `file`.
135+
Depending on the object store type, you may need to provide additional options
136+
for your object store configuration.
137+
- `--cluster-id`: A string identifier that determines part of the storage path hierarchy. All nodes within the same cluster share this identifier. The storage path follows the pattern `<CONFIGURED_PATH>/<CLUSTER_ID>/<NODE_ID>`. In a multi-node setup, this ID is used to reference the entire cluster.
138+
- `--node-id`: A string identifier that distinguishes individual server instances within the cluster. This forms the final part of the storage path: `<CONFIGURED_PATH>/<CLUSTER_ID>/<NODE_ID>`. In a multi-node setup, this ID is used to reference specific nodes.
139+
140+
> [!Note]
141+
> The combined path structure `<CONFIGURED_PATH>/<CLUSTER_ID>/<NODE_ID>` ensures proper organization of data in your object store, allowing for clean separation between clusters and individual nodes.
136142
137143
> [!Note]
138144
> #### Diskless architecture
@@ -189,7 +195,6 @@ docker run -it \
189195
```bash
190196
# S3 object store (default is the us-east-1 region)
191197
# Specify the Object store type and associated options
192-
193198
influxdb3 serve \
194199
--node-id host01 \
195200
--cluster-id cluster01 \
@@ -203,7 +208,6 @@ influxdb3 serve \
203208
# Minio or other open source object store
204209
# (using the AWS S3 API with additional parameters)
205210
# Specify the object store type and associated options
206-
207211
influxdb3 serve \
208212
--node-id host01 \
209213
--cluster-id cluster01 \
@@ -226,7 +230,7 @@ influxdb3 serve --help
226230
When starting {{% product-name %}} for the first time, it prompts you to enter an email address for verification. You will receive an email with a verification link.
227231
Upon verification, the license creation, retrieval, and application are automated.
228232

229-
_During the alpha period, licenses are valid until May 7, 2025._
233+
_During the beta period, licenses are valid until May 7, 2025._
230234

231235
### Data model
232236

0 commit comments

Comments
 (0)