You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/user/content/sql/system-catalog/mz_internal.md
+21-12Lines changed: 21 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -415,6 +415,21 @@ The `mz_dataflow_addresses` view describes how the [dataflow] channels and opera
415
415
|`id`|[`bigint`]| The ID of the channel or operator. Corresponds to [`mz_dataflow_channels.id`](#mz_dataflow_channels) or [`mz_dataflow_operators.id`](#mz_dataflow_operators). |
416
416
|`address`|[`bigint list`]| A list of scope-local indexes indicating the path from the root to this channel or operator. |
417
417
418
+
### `mz_dataflow_arrangement_sizes`
419
+
420
+
The `mz_dataflow_arrangement_sizes` view describes how many records and batches
|`id`|[`bigint`]| The ID of the [dataflow]. Corresponds to [`mz_dataflows.id`](#mz_dataflows). |
426
+
|`name`|[`bigint`]| The name of the object (e.g., index) maintained by the dataflow. |
427
+
|`records`|[`bigint`]| The number of records in all arrangements in the dataflow. |
428
+
|`batches`|[`bigint`]| The number of batches in all arrangements in the dataflow. |
429
+
|`size`|[`bigint`]| The utilized size in bytes of the arrangements. |
430
+
|`capacity`|[`bigint`]| The capacity in bytes of the arrangements. Can be larger than the size. |
431
+
|`allocations`|[`bigint`]| The number of separate memory allocations backing the arrangements. |
432
+
418
433
### `mz_dataflow_channels`
419
434
420
435
The `mz_dataflow_channels` view describes the communication channels between [dataflow] operators.
@@ -469,20 +484,14 @@ The `mz_dataflow_operator_parents` view describes how [dataflow] operators are n
469
484
|`id`|[`bigint`]| The ID of the operator. Corresponds to [`mz_dataflow_operators.id`](#mz_dataflow_operators). |
470
485
|`parent_id`|[`bigint`]| The ID of the operator's parent operator. Corresponds to [`mz_dataflow_operators.id`](#mz_dataflow_operators). |
471
486
472
-
### `mz_dataflow_arrangement_sizes`
487
+
### `mz_dataflow_shutdown_durations_histogram`
473
488
474
-
The `mz_dataflow_arrangement_sizes` view describes how many records and batches
475
-
are contained in operators under each dataflow.
489
+
The `mz_dataflow_shutdown_durations_histogram` view describes a histogram of the time in nanoseconds required to fully shut down dropped [dataflows][dataflow].
0 commit comments