Merge branch 'master' into 6020-add-code-placeholders-core-ent-examples
commit
b84ab2cb60
|
@ -157,7 +157,7 @@ tags:
|
|||
1. [Create an admin token](#section/Authentication) for the InfluxDB 3 Enterprise API.
|
||||
|
||||
```bash
|
||||
curl -X POST "http://localhost:8181/api/v3/enterprise/configure/token/admin"
|
||||
curl -X POST "http://localhost:8181/api/v3/configure/token/admin"
|
||||
```
|
||||
2. [Check the status](#section/Server-information) of the InfluxDB server.
|
||||
|
||||
|
|
|
@ -57,6 +57,11 @@ timestamp on the Parquet file entry in the Catalog.
|
|||
The Parquet file is no
|
||||
longer queryable, but remains intact in the object store.
|
||||
|
||||
> [!Note]
|
||||
> Soft deletes are a mechanism of the {{% product-name %}} Catalog, not of the
|
||||
> underlying object storage provider. Soft deletes do not modify objects in the
|
||||
> object store; only Catalog entries that reference objects in the object store.
|
||||
|
||||
## Hard delete
|
||||
|
||||
A _hard delete_ refers to when a Parquet file is actually deleted from object
|
||||
|
@ -219,6 +224,15 @@ written on or around the beginning of the next hour.
|
|||
Use the following process to restore your InfluxDB cluster to a recovery point
|
||||
using Catalog store snapshots:
|
||||
|
||||
> [!Warning]
|
||||
>
|
||||
> #### Use the same InfluxDB Clustered version used to generate the snapshot
|
||||
>
|
||||
> When restoring an InfluxDB cluster to a recovery point, use the same version
|
||||
> of InfluxDB Clustered used to generate the Catalog store snapshot.
|
||||
> You may need to [downgrade to a previous version](/influxdb3/clustered/admin/upgrade/)
|
||||
> before restoring.
|
||||
|
||||
1. **Install prerequisites:**
|
||||
|
||||
- `kubectl` CLI for managing your Kubernetes deployment.
|
||||
|
@ -273,6 +287,7 @@ using Catalog store snapshots:
|
|||
metadata:
|
||||
name: influxdb
|
||||
namespace: influxdb
|
||||
spec:
|
||||
pause: true
|
||||
# ...
|
||||
```
|
||||
|
@ -331,6 +346,7 @@ using Catalog store snapshots:
|
|||
metadata:
|
||||
name: influxdb
|
||||
namespace: influxdb
|
||||
spec:
|
||||
pause: false
|
||||
# ...
|
||||
```
|
||||
|
@ -349,8 +365,6 @@ Your InfluxDB cluster is now restored to the recovery point.
|
|||
When the Garbage Collector runs, it identifies what Parquet files are not
|
||||
associated with the recovery point and [soft deletes](#soft-delete) them.
|
||||
|
||||
|
||||
|
||||
## Resources
|
||||
|
||||
### prep\_pg\_dump.awk
|
||||
|
|
Loading…
Reference in New Issue