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: src/UserGuide/Master/Table/User-Manual/Query-Performance-Analysis.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,17 @@ A `FragmentInstance` is a wrapper for a query shard in IoTDB. Each query shard o
151
151
- Ready Queued Time: Total time the shard's tasks spent in the ready queue (tasks are not blocked but lack query execution thread resources).
152
152
- Blocked Queued Time: Total time the shard's tasks spent in the blocked queue (tasks are blocked due to resources like memory or upstream data not being sent).
153
153
154
+
Since V2.0.9, the following information will be added to `FragmentInstance`:
155
+
156
+
-`OutputPlanNodeId`: Indicates the downstream node that receives data corresponding to the sink node. Only present in sink nodes.
157
+
-`sizeInBytes`: Represents the size in bytes of TsBlocks received in exchange nodes (only data size is counted). Only present in exchange nodes.
158
+
- Data filtering‑related fields for `tableScan` nodes. Valid only when filter pushdown is applied to tableScan, and only present in tableScan nodes:
159
+
-`TimeSeriesIndexFilteredRows`: Number of rows filtered out by TimeseriesMetadata
160
+
-`ChunkIndexFilteredRows`: Number of rows filtered out by ChunkMetadata
161
+
-`PageIndexFilteredRows`: Number of rows filtered out by PageHeader internal filtering
162
+
-`RowScanFilteredRows`: Number of rows filtered out during per-row data inspection. Only displayed when `verbose` is enabled.
163
+
164
+
154
165
#### BloomFilter-Related Metrics
155
166
156
167
Bloom filters help determine if a sequence exists in a TsFile. They are stored at the end of each TsFile.
Copy file name to clipboardExpand all lines: src/UserGuide/latest-Table/User-Manual/Query-Performance-Analysis.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,17 @@ A `FragmentInstance` is a wrapper for a query shard in IoTDB. Each query shard o
151
151
- Ready Queued Time: Total time the shard's tasks spent in the ready queue (tasks are not blocked but lack query execution thread resources).
152
152
- Blocked Queued Time: Total time the shard's tasks spent in the blocked queue (tasks are blocked due to resources like memory or upstream data not being sent).
153
153
154
+
Since V2.0.9, the following information will be added to `FragmentInstance`:
155
+
156
+
-`OutputPlanNodeId`: Indicates the downstream node that receives data corresponding to the sink node. Only present in sink nodes.
157
+
-`sizeInBytes`: Represents the size in bytes of TsBlocks received in exchange nodes (only data size is counted). Only present in exchange nodes.
158
+
- Data filtering‑related fields for `tableScan` nodes. Valid only when filter pushdown is applied to tableScan, and only present in tableScan nodes:
159
+
-`TimeSeriesIndexFilteredRows`: Number of rows filtered out by TimeseriesMetadata
160
+
-`ChunkIndexFilteredRows`: Number of rows filtered out by ChunkMetadata
161
+
-`PageIndexFilteredRows`: Number of rows filtered out by PageHeader internal filtering
162
+
-`RowScanFilteredRows`: Number of rows filtered out during per-row data inspection. Only displayed when `verbose` is enabled.
163
+
164
+
154
165
#### BloomFilter-Related Metrics
155
166
156
167
Bloom filters help determine if a sequence exists in a TsFile. They are stored at the end of each TsFile.
- loadChunkFromCacheCount: 命中ChunkCache的次数,注意这里对于对齐设备来讲,每个分量(包括time列,都会去单独请求Cache,所以对于对齐设备来讲,(loadChunkFromCacheCount + loadChunkFromDiskCount)= tsfile number * subSensor number(包括time列)* avg chunk number in each tsfile
- loadChunkFromCacheCount: 命中ChunkCache的次数,注意这里对于对齐设备来讲,每个分量(包括time列,都会去单独请求Cache,所以对于对齐设备来讲,(loadChunkFromCacheCount + loadChunkFromDiskCount)= tsfile number * subSensor number(包括time列)* avg chunk number in each tsfile
0 commit comments