Merge branch 'master' into jts-fix-5915

pull/5916/head
Jason Stirnaman 2025-03-19 09:13:31 -05:00 committed by GitHub
commit d17eb2d313
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 21 additions and 31 deletions

View File

@ -857,7 +857,8 @@ Specifies the size of the RAM cache used to store data, in bytes.
#### exec-mem-pool-bytes
Specifies the size of memory pool used during query execution.
Can be given as absolute value in bytes or as a percentage of the total available memory (for example: `10%`).
Can be given as absolute value in bytes or as a percentage of the total available memory--for
example: `8000000000` or `10%`).
**Default:** `20%`
@ -871,8 +872,7 @@ Can be given as absolute value in bytes or as a percentage of the total availabl
<span id="buffer-mem-limit-mb" />
Specifies the threshold for the internal memory buffer. Supports either a
percentage (portion of available memory) or absolute value in MB
(total bytes)--for example: `70%` or `1000 MB`.
percentage (portion of available memory) or absolute value in MB--for example: `70%` or `1000`.
**Default:** `50%`
@ -980,26 +980,8 @@ Defines the interval at which each replica specified in the
- [compaction-cleanup-wait](#compaction-cleanup-wait)
- [gen1-duration](#gen1-duration)
#### compactor-id
> [!Important]
> This option has been superseded by using `--mode compact`. See the [mode](#mode) section for details.
---
#### compact-from-node-ids
> [!Important]
> This option has been superseded by using `--mode compact`. See the [mode](#mode) section for details.
---
#### run-compactions
> [!Important]
> This option has been superseded by using `--mode compact`. See the [mode](#mode) section for details.
---
#### compaction-row-limit
@ -1223,6 +1205,7 @@ engine uses.
Specifies the Python package manager that the processing engine uses.
This option supports the following values:
- `discover` _(default)_: Automatically discover available package manager
- `pip`: Use pip package manager
- `uv`: Use uv package manager

View File

@ -68,10 +68,13 @@ When creating an InfluxDB data source that uses SQL to query data:
2. Under **InfluxDB Details**:
- **Database**: Provide a default database name to query.
- **Token**: Provide an arbitrary string.
- **Token**: Provide an arbitrary, non-empty string.
> [!Note]
> While in beta, {{< product-name >}} does not require an authorization token.
> However, if you included a `--token` option or defined the
> `INFLUXDB3_AUTH_TOKEN` environment variable when starting your
> {{< product-name >}} server, provide that token.
- **Insecure Connection**: If _not_ using HTTPS, enable this option.
@ -107,8 +110,8 @@ When creating an InfluxDB data source that uses InfluxQL to query data:
- **HTTP Method**: Choose one of the available HTTP request methods to use when querying data:
- **POST** ({{< req text="Recommended" >}})
- **GET**
- **POST** ({{< req text="Recommended" >}})
- **GET**
3. Click **Save & test**.
@ -135,9 +138,10 @@ use Grafana to build, run, and inspect queries against {{< product-name >}}.
> {{% sql/sql-schema-intro %}}
> To learn more, see [Query Data](/influxdb3/version/query-data/sql/).
1. Click **Explore**.
2. In the dropdown, select the saved InfluxDB data source to query.
3. Use the SQL query form to build your query:
1. Click **Explore**.
2. In the dropdown, select the saved InfluxDB data source to query.
3. Use the SQL query form to build your query:
- **Table**: Select the measurement to query.
- **Column**: Select one or more fields and tags to return as columns in query results.
@ -161,7 +165,8 @@ use Grafana to build, run, and inspect queries against {{< product-name >}}.
You can sort by time and multiple fields or tags.
To sort in descending order, select **DESC**.
4. {{< req text="Recommended" color="green" >}}: Change format to **Time series**.
4. {{< req text="Recommended" color="green" >}}: Change format to **Time series**.
- Use the **Format** dropdown to change the format of the query results.
For example, to visualize the query results as a time series, select **Time series**.
@ -172,9 +177,10 @@ use Grafana to build, run, and inspect queries against {{< product-name >}}.
{{% tab-content %}}
<!------------------------------- BEGIN INFLUXQL ------------------------------>
1. Click **Explore**.
2. In the dropdown, select the **InfluxDB** data source that you want to query.
3. Use the InfluxQL query form to build your query:
1. Click **Explore**.
2. In the dropdown, select the **InfluxDB** data source that you want to query.
3. Use the InfluxQL query form to build your query:
- **FROM**: Select the measurement that you want to query.
- **WHERE**: To filter the query results, enter a conditional expression.
- **SELECT**: Select fields to query and an aggregate function to apply to each.
@ -183,6 +189,7 @@ use Grafana to build, run, and inspect queries against {{< product-name >}}.
- **GROUP BY**: By default, Grafana groups data by time to downsample results
and improve query performance.
You can also add other tags to group by.
4. Click **Run query** to execute the query.
<!-------------------------------- END INFLUXQL ------------------------------->