Skip to content

Commit 63d3946

Browse files
authored
Merge branch 'master' into docs/v3/processing-engine
2 parents 58bed0e + 1e9179c commit 63d3946

File tree

197 files changed

+6942
-1973
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

197 files changed

+6942
-1973
lines changed

.vscode/settings.json

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"commentAnchors.tags.anchors":
3-
{ "SOURCE": {
4-
"scope": "file",
5-
"behavior": "link",
6-
"iconColor": "#FF0000",
7-
"highlightColor": "#FF0000",
8-
"style": "bold"
9-
}},
2+
"commentAnchors.tags.anchors":
3+
{ "SOURCE": {
4+
"scope": "file",
5+
"behavior": "link",
6+
"iconColor": "#FF0000",
7+
"highlightColor": "#FF0000",
8+
"style": "bold"
9+
}},
1010
"commentAnchors.workspace.matchFiles": "**/*.{md,ini,json,yaml,yml}",
1111
"commentAnchors.workspace.enabled": true,
1212
"yaml.schemas": {
@@ -15,10 +15,17 @@
1515
"vale.valeCLI.config": "${workspaceFolder}/.vale.ini",
1616
"vale.valeCLI.minAlertLevel": "warning",
1717
"github.copilot.chat.codeGeneration.useInstructionFiles": true,
18-
"github.copilot.chat.codeGeneration.instructionFiles": [
18+
"github.copilot.chat.codeGeneration.instructions": [
1919
{
20-
"path": "${workspaceFolder}/.github/copilot-instructions.md",
21-
"enabled": true
20+
"file": "${workspaceFolder}/.github/copilot-instructions.md",
2221
}
2322
],
23+
"github.copilot.chat.pullRequestDescriptionGeneration.instructions": [
24+
{
25+
"file": "${workspaceFolder}/.github/copilot-instructions.md",
26+
}
27+
],
28+
"cSpell.words": [
29+
"influxctl"
30+
]
2431
}

api-docs/influxdb3/core/v3/ref.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ security:
4343
tags:
4444
- name: Authentication
4545
description: |
46-
During the initial Alpha phase, InfluxDB 3 Core does not require authentication.
46+
During the Beta phase, InfluxDB 3 Core does not require authentication.
4747
x-traitTag: true
4848
- name: Compatibility endpoints
4949
description: |

api-docs/influxdb3/enterprise/v3/ref.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ security:
4343
tags:
4444
- name: Authentication
4545
description: |
46-
During the initial Alpha phase, InfluxDB 3 Enterprise does not require authentication.
46+
During the Beta phase, InfluxDB 3 Enterprise does not require authentication.
4747
x-traitTag: true
4848
- name: Compatibility endpoints
4949
description: |

content/influxdb3/cloud-dedicated/admin/databases/delete.md

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,21 @@ related:
2929
---
3030

3131
Use the [`influxctl` CLI](/influxdb3/cloud-dedicated/reference/cli/influxctl/)
32-
or the [Management HTTP API](/influxdb3/cloud-dedicated/api/management/) to create a database in your {{< product-name omit=" Clustered" >}} cluster.
32+
or the [Management HTTP API](/influxdb3/cloud-dedicated/api/management/)
33+
to delete a database from your {{< product-name omit=" Clustered" >}} cluster.
3334

3435
> [!Warning]
3536
>
3637
> #### Deleting a database cannot be undone
3738
>
3839
> Once a database is deleted, data stored in that database cannot be recovered.
39-
>
40-
> #### Cannot reuse database names
41-
>
42-
> After a database is deleted, you cannot reuse the same name for a new database.
40+
>
41+
> #### Wait before writing to a new database with the same name
42+
>
43+
> After deleting a database from your {{% product-name omit=" Clustered" %}}
44+
> cluster, you can reuse the name to create a new database, but **wait two to
45+
> three minutes** after deleting the previous database before writing to the new
46+
> database to allow write caches to clear.
4347
4448
{{< tabs-wrapper >}}
4549
{{% tabs %}}
@@ -50,13 +54,15 @@ or the [Management HTTP API](/influxdb3/cloud-dedicated/api/management/) to crea
5054

5155
<!------------------------------- BEGIN INFLUXCTL ----------------------------->
5256

53-
1. If you haven't already, [download and install the `influxctl` CLI](/influxdb3/cloud-dedicated/reference/cli/influxctl/#download-and-install-influxctl), and then [configure an `influxctl` connection profile](/influxdb3/cloud-dedicated/reference/cli/influxctl/#configure-connection-profiles) for your cluster.
57+
1. If you haven't already,
58+
[download and install the `influxctl` CLI](/influxdb3/cloud-dedicated/reference/cli/influxctl/#download-and-install-influxctl), and then [configure an `influxctl` connection profile](/influxdb3/cloud-dedicated/reference/cli/influxctl/#configure-connection-profiles)
59+
for your cluster.
5460

55-
2. In your terminal, run the `influxctl database delete` command and provide the following:
61+
2. In your terminal, run the `influxctl database delete` command and provide the following:
5662

57-
- Name of the database to delete
63+
- The name of the database to delete
5864

59-
3. Confirm that you want to delete the database.
65+
3. Confirm that you want to delete the database.
6066

6167
{{% code-placeholders "DATABASE_NAME" %}}
6268

@@ -73,23 +79,26 @@ influxctl database delete DATABASE_NAME
7379

7480
_This example uses [cURL](https://curl.se/) to send a Management HTTP API request, but you can use any HTTP client._
7581

76-
1. If you haven't already, follow the instructions to [install cURL](https://everything.curl.dev/install/index.html) for your system.
77-
2. In your terminal, use cURL to send a request to the following {{% product-name %}} endpoint:
82+
1. If you haven't already, follow the instructions to [install cURL](https://everything.curl.dev/install/index.html) for your system.
83+
2. In your terminal, use cURL to send a request to the following {{% product-name %}} endpoint:
7884

79-
{{% api-endpoint endpoint="https://console.influxdata.com/api/v0/accounts/ACCOUNT_ID/clusters/CLUSTER_ID/databases/DATABASE_NAME" method="delete" api-ref="/influxdb3/cloud-dedicated/api/management/#operation/DeleteClusterDatabase" %}}
85+
{{% api-endpoint endpoint="https://console.influxdata.com/api/v0/accounts/ACCOUNT_ID/clusters/CLUSTER_ID/databases/DATABASE_NAME" method="delete" api-ref="/influxdb3/cloud-dedicated/api/management/#operation/DeleteClusterDatabase" %}}
8086

81-
In the URL, provide the following:
87+
In the URL, provide the following:
8288

83-
- `ACCOUNT_ID`: The ID of the [account](/influxdb3/cloud-dedicated/get-started/setup/#request-an-influxdb-cloud-dedicated-cluster) that the cluster belongs to _(see how to [list cluster details](/influxdb3/cloud-dedicated/admin/clusters/list/#detailed-output-in-json))_.
84-
- `CLUSTER_ID`: The ID of the [cluster](/influxdb3/cloud-dedicated/get-started/setup/#request-an-influxdb-cloud-dedicated-cluster) that you want to manage _(see how to [list cluster details](/influxdb3/cloud-dedicated/admin/clusters/list/#detailed-output-in-json))_.
85-
- `DATABASE_NAME`: The name of the [database](/influxdb3/cloud-dedicated/admin/databases/) that you want to delete _(see how to [list databases](/influxdb3/cloud-dedicated/admin/databases/list/))_.
89+
- `ACCOUNT_ID`: The ID of the [account](/influxdb3/cloud-dedicated/get-started/setup/#request-an-influxdb-cloud-dedicated-cluster)
90+
that the cluster belongs to _(see how to [list cluster details](/influxdb3/cloud-dedicated/admin/clusters/list/#detailed-output-in-json))_.
91+
- `CLUSTER_ID`: The ID of the [cluster](/influxdb3/cloud-dedicated/get-started/setup/#request-an-influxdb-cloud-dedicated-cluster)
92+
that you want to manage _(see how to [list cluster details](/influxdb3/cloud-dedicated/admin/clusters/list/#detailed-output-in-json))_.
93+
- `DATABASE_NAME`: The name of the [database](/influxdb3/cloud-dedicated/admin/databases/)
94+
that you want to delete _(see how to [list databases](/influxdb3/cloud-dedicated/admin/databases/list/))_.
8695

87-
Provide the following request headers:
96+
Provide the following request headers:
8897

89-
- `Accept: application/json` to ensure the response body is JSON content
90-
- `Authorization: Bearer` and a [Management API token](/influxdb3/cloud-dedicated/admin/tokens/management/) for your cluster _(see how to [create a management token](/influxdb3/cloud-dedicated/admin/tokens/management/) for Management API requests)_.
98+
- `Accept: application/json` to ensure the response body is JSON content
99+
- `Authorization: Bearer` and a [Management API token](/influxdb3/cloud-dedicated/admin/tokens/management/) for your cluster _(see how to [create a management token](/influxdb3/cloud-dedicated/admin/tokens/management/) for Management API requests)_.
91100

92-
Specify the `DELETE` request method.
101+
Specify the `DELETE` request method.
93102

94103
The following example shows how to use the Management API to delete a database:
95104

0 commit comments

Comments
 (0)