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: influxdb/content.md
+9-13Lines changed: 9 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -20,18 +20,14 @@ InfluxDB offers multiple versions and deployment options to meet diverse technic
20
20
21
21
## InfluxDB 3
22
22
23
-
InfluxDB 3, the latest InfluxDB engine, uses Apache Arrow in-memory processing, the DataFusion SQL engine, and diskless
24
-
object storage architecture. It delivers sub-10ms query response times, unlimited cardinality, and supports both SQL and InfluxQL.
23
+
InfluxDB 3, the latest InfluxDB engine, uses Apache Arrow in-memory processing, the DataFusion SQL engine, and diskless object storage architecture. It delivers sub-10ms query response times, unlimited cardinality, and supports both SQL and InfluxQL.
25
24
26
-
InfluxDB 3 offers two editions--both provide SQL and InfluxQL query capabilities, an integrated processing engine for real-time
27
-
data transformation, and seamless integration with InfluxDB 3 Explorer for data visualization and management:
25
+
InfluxDB 3 offers two editions--both provide SQL and InfluxQL query capabilities, an integrated processing engine for real-time data transformation, and seamless integration with InfluxDB 3 Explorer for data visualization and management:
28
26
29
27
-**InfluxDB 3 Core**: A free, open source version of the new engine for local development and prototyping.
30
28
-**InfluxDB 3 Enterprise**: A production-grade, scalable time series database that includes support for clustering, security, and enterprise features.
31
29
32
-
**License key for Enterprise** To run InfluxDB 3 Enterprise, you need a license key. Start with a free 30-day trial license by
33
-
selecting the trial option when you first start the server. For more license options, see the [InfluxDB 3 Enterprise documentation](https://docs.influxdata.com/influxdb3/enterprise/admin/license/).
34
-
30
+
**License key for Enterprise** To run InfluxDB 3 Enterprise, you need a license key. Start with a free 30-day trial license by selecting the trial option when you first start the server. For more license options, see the [InfluxDB 3 Enterprise documentation](https://docs.influxdata.com/influxdb3/enterprise/admin/license/).
35
31
36
32
## Docker Images
37
33
@@ -90,9 +86,9 @@ docker run -d --name influxdb3-core \
90
86
91
87
This command:
92
88
93
-
-Maps container port `8181` (HTTP API) to your host
94
-
-Mounts the local `influxdb3-data` directory to persist data
95
-
-Configures InfluxDB 3 Core to use a file system object store
89
+
-Maps container port `8181` (HTTP API) to your host
90
+
-Mounts the local `influxdb3-data` directory to persist data
91
+
-Configures InfluxDB 3 Core to use a file system object store
96
92
97
93
Once the container is running, generate an admin token:
98
94
@@ -119,7 +115,7 @@ Use the InfluxDB 3 Enterprise Docker image to run a standalone or clustered inst
119
115
120
116
### Docker Compose
121
117
122
-
To use Docker Compose, open your `compose.yml` file and define a service for InfluxDB 3 Enterprise.
118
+
To use Docker Compose, open your `compose.yml` file and define a service for InfluxDB 3 Enterprise.
123
119
124
120
```yaml
125
121
services:
@@ -140,15 +136,15 @@ services:
140
136
- INFLUXDB3_LICENSE_EMAIL=EMAIL_ADDRESS
141
137
```
142
138
143
-
-Replace `EMAIL_ADDRESS` with your email address to bypass the email prompt when generating a trial or at-home license.
139
+
-Replace `EMAIL_ADDRESS` with your email address to bypass the email prompt when generating a trial or at-home license.
144
140
145
141
Start your container:
146
142
147
143
```bash
148
144
docker compose pull && docker compose run influxdb3-enterprise
149
145
```
150
146
151
-
-InfluxDB 3 starts in a container with host port 8181 mapped to container port 8181, the server default for HTTP connections.
147
+
-InfluxDB 3 starts in a container with host port 8181 mapped to container port 8181, the server default for HTTP connections.
0 commit comments