Skip to content

Latest commit

 

History

History
229 lines (123 loc) · 2.66 KB

pinot-noir.ileafstats.md

File metadata and controls

229 lines (123 loc) · 2.66 KB

Home > pinot-noir > ILeafStats

ILeafStats interface

Stats for the LEAF operator.

Signature:

export interface ILeafStats extends IStageStatsBase

Extends: IStageStatsBase

Properties

Property

Modifiers

Type

Description

minConsumingFreshnessTimeMs

number

Minimum consuming freshness time in milliseconds.

numConsumingSegmentsQueried

number

Number of consuming segments queried.

numDocsScanned

number

Number of documents scanned.

numEntriesScannedPostFilter

number

Number of entries scanned after the filtering phase.

numSegmentsMatched

number

Number of segments matched.

numSegmentsProcessed

number

Number of segments processed.

numSegmentsPrunedByServer

number

Number of segments pruned by the server.

numSegmentsQueried

number

Number of segments queried.

systemActivitiesCpuTimeNs?

number

(Optional) System activities CPU time in nanoseconds.

table

string

Name of the table being scanned.

threadCpuTimeNs

number

Thread CPU time in nanoseconds.

totalDocs

number

Total number of documents in the table.

type

'LEAF'