-
Notifications
You must be signed in to change notification settings - Fork 326
docs(influxdb3-enterprise): rename PachaTree partitions to shards #7189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,23 +33,23 @@ you can query with SQL. | |
|
|
||
| ### system.pt_ingest_wal | ||
|
|
||
| View WAL files and their partitions: | ||
| View WAL files and their shards: | ||
|
|
||
| ```sql | ||
| SELECT * FROM system.pt_ingest_wal; | ||
| ``` | ||
|
|
||
| Example output: | ||
|
|
||
| | wal_file_id | partition_id | database_id | table_id | min_time | max_time | row_count | size_bytes | | ||
| |:------------|:-------------|:------------|:---------|:---------|:---------|:----------|:-----------| | ||
| | wal_001 | p_1 | db_1 | t_1 | 2024-01-01T00:00:00Z | 2024-01-01T00:10:00Z | 50000 | 2456789 | | ||
| | wal_002 | p_1 | db_1 | t_1 | 2024-01-01T00:10:00Z | 2024-01-01T00:20:00Z | 48000 | 2345678 | | ||
| | wal_file_id | shard_start_time | shard_duration_seconds | min_time | max_time | row_count | size_bytes | | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The field names are actually |
||
| |:------------|:-----------------|:-----------------------|:---------|:---------|:----------|:-----------| | ||
| | wal_001 | 2024-01-01T00:00:00Z | 86400 | 2024-01-01T00:00:00Z | 2024-01-01T00:10:00Z | 50000 | 2456789 | | ||
| | wal_002 | 2024-01-01T00:00:00Z | 86400 | 2024-01-01T00:10:00Z | 2024-01-01T00:20:00Z | 48000 | 2345678 | | ||
|
|
||
| Use this table to monitor: | ||
|
|
||
| - **WAL accumulation**: Track the number and size of unmerged WAL files | ||
| - **Partition distribution**: See how data is distributed across partitions | ||
| - **Shard distribution**: See how data is distributed across shards | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think @pauldix mentioned that the WAL is no longer partitioned/sharded. Maybe we should rename these fields 🤔 |
||
| - **Time coverage**: Verify data time ranges | ||
|
|
||
| #### Monitor WAL backlog | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed in this PR