consume operator
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Consumes the tabular data stream handed to the operator.
The consume
operator is mostly used for triggering the query side-effect without actually returning
the results back to the caller.
The consume
operator can be used for estimating the
cost of a query without actually delivering the results back to the client.
(The estimation isn't exact for various reasons; for example, consume
is calculated distributively, so T | consume
won't transmit the table's
data between the nodes of the cluster.)
consume
[decodeblocks
=
DecodeBlocks]
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
DecodeBlocks | bool |
If set to true , or if the request property perftrace is set to true , the consume operator won't just enumerate the records at its input, but actually force each value in those records to be decompressed and decoded. |