You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/shared/v3-enterprise-get-started/_index.md
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -131,8 +131,14 @@ and provide the following:
131
131
InfluxDB supports the following: local file system (`file`), `memory`,
132
132
S3 (and compatible services like Ceph or Minio) (`s3`),
133
133
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.
136
142
137
143
> [!Note]
138
144
> #### Diskless architecture
@@ -189,7 +195,6 @@ docker run -it \
189
195
```bash
190
196
# S3 object store (default is the us-east-1 region)
191
197
# Specify the Object store type and associated options
192
-
193
198
influxdb3 serve \
194
199
--node-id host01 \
195
200
--cluster-id cluster01 \
@@ -203,7 +208,6 @@ influxdb3 serve \
203
208
# Minio or other open source object store
204
209
# (using the AWS S3 API with additional parameters)
205
210
# Specify the object store type and associated options
206
-
207
211
influxdb3 serve \
208
212
--node-id host01 \
209
213
--cluster-id cluster01 \
@@ -226,7 +230,7 @@ influxdb3 serve --help
226
230
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.
227
231
Upon verification, the license creation, retrieval, and application are automated.
228
232
229
-
_During the alpha period, licenses are valid until May 7, 2025._
233
+
_During the beta period, licenses are valid until May 7, 2025._
0 commit comments