Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions content/influxdb3/enterprise/admin/pachatree/configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,10 +363,10 @@ influxdb3 serve \

### Development (minimal resources)

```bash
```bash { placeholders="dev01|dev-cluster"}
influxdb3 serve \
--node-id dev01 \
--cluster-id dev \
--cluster-id dev-cluster \
--object-store file \
--data-dir ~/.influxdb3 \
--use-pacha-tree \
Expand All @@ -378,12 +378,12 @@ influxdb3 serve \

### Production all-in-one (8 cores, 32 GB RAM)

```bash
```bash { placeholders="prod01|prod-cluster|S3_BUCKET|AWS_ACCESS_KEY_ID|AWS_SECRET_ACCESS_KEY"}
influxdb3 serve \
--node-id prod01 \
--cluster-id prod \
--cluster-id prod-cluster \
--object-store s3 \
--bucket YOUR_BUCKET \
--bucket S3_BUCKET \
--aws-access-key-id AWS_ACCESS_KEY_ID \
--aws-secret-access-key AWS_SECRET_ACCESS_KEY \
--use-pacha-tree \
Expand All @@ -397,12 +397,12 @@ influxdb3 serve \

### High-throughput ingest node

```bash
```bash { placeholders="ingest01|prod-cluster|S3_BUCKET|AWS_ACCESS_KEY_ID|AWS_SECRET_ACCESS_KEY"}
influxdb3 serve \
--node-id ingest01 \
--cluster-id prod \
--cluster-id prod-cluster \
--object-store s3 \
--bucket YOUR_BUCKET \
--bucket S3_BUCKET \
--aws-access-key-id AWS_ACCESS_KEY_ID \
--aws-secret-access-key AWS_SECRET_ACCESS_KEY \
--use-pacha-tree \
Expand All @@ -416,12 +416,12 @@ influxdb3 serve \

### Query-optimized node

```bash
```bash { placeholders="query01|prod-cluster|S3_BUCKET|AWS_ACCESS_KEY_ID|AWS_SECRET_ACCESS_KEY"}
influxdb3 serve \
--node-id query01 \
--cluster-id prod \
--cluster-id prod-cluster \
--object-store s3 \
--bucket YOUR_BUCKET \
--bucket S3_BUCKET \
--aws-access-key-id AWS_ACCESS_KEY_ID \
--aws-secret-access-key AWS_SECRET_ACCESS_KEY \
--use-pacha-tree \
Expand All @@ -435,12 +435,12 @@ influxdb3 serve \

### Dedicated compactor

```bash
```bash { placeholders="compact01|prod-cluster|S3_BUCKET|AWS_ACCESS_KEY_ID|AWS_SECRET_ACCESS_KEY"}
influxdb3 serve \
--node-id compact01 \
--cluster-id prod \
--cluster-id prod-cluster \
--object-store s3 \
--bucket YOUR_BUCKET \
--bucket S3_BUCKET \
--aws-access-key-id AWS_ACCESS_KEY_ID \
--aws-secret-access-key AWS_SECRET_ACCESS_KEY \
--use-pacha-tree \
Expand Down
3 changes: 3 additions & 0 deletions content/influxdb3/enterprise/admin/pachatree/monitor.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ curl -X GET "http://localhost:8181/api/v3/query_sql_telemetry" \
-H "Authorization: Bearer AUTH_TOKEN"
```

Replace {{% code-placeholder-key %}}`AUTH_TOKEN`{{% /code-placeholder-key %}}
with your {{% token-link %}}.

### Telemetry response

The response includes:
Expand Down
Loading