Skip to main content

◆ collectStatistics() [1/2]

CollectStatisticsResponse kinetica.Kinetica.collectStatistics (CollectStatisticsRequestrequest_)
inline

Collect statistics for a column(s) in a specified table.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 16798 of file KineticaFunctions.cs.

◆ collectStatistics() [2/2]

CollectStatisticsResponse kinetica.Kinetica.collectStatistics (stringtable_name,
IList< string >column_names,
IDictionary< string, string >options = null )
inline

Collect statistics for a column(s) in a specified table.

Parameters
table_nameName of a table, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table. A value of '' collects statistics on every user table the caller may read (excluding system schemas, views, and temporary tables); when used, column_names must be ''.
column_namesList of one or more column names in table_name for which to collect statistics (cardinality, mean value, etc.). A single entry of ’*’ expands to every collectable column on the table (geometry, vector, JSON, and array columns are skipped).
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 16841 of file KineticaFunctions.cs.

◆ CollectStatisticsAsync() [1/2]

async System.Threading.Tasks.Task< CollectStatisticsResponse > kinetica.Kinetica.CollectStatisticsAsync (CollectStatisticsRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Collect statistics for a column(s) in a specified table.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 16814 of file KineticaFunctions.cs.

◆ CollectStatisticsAsync() [2/2]

async System.Threading.Tasks.Task< CollectStatisticsResponse > kinetica.Kinetica.CollectStatisticsAsync (stringtable_name,
IList< string >column_names,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Collect statistics for a column(s) in a specified table.

(async)

Parameters
table_nameName of a table, in [schema_name.]table_name format, using standard name resolution rules. Must be an existing table. A value of '' collects statistics on every user table the caller may read (excluding system schemas, views, and temporary tables); when used, column_names must be ''.
column_namesList of one or more column names in table_name for which to collect statistics (cardinality, mean value, etc.). A single entry of ’*’ expands to every collectable column on the table (geometry, vector, JSON, and array columns are skipped).
optionsOptional parameters. The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 16870 of file KineticaFunctions.cs.