Skip to main content

◆ showResourceObjects() [1/2]

ShowResourceObjectsResponse kinetica.Kinetica.showResourceObjects (IDictionary< string, string >options = null)
inline

Returns information about the internal sub-components (tiered objects) which use resources of the system.

The request can either return results from actively used objects (default) or it can be used to query the status of the objects of a given list of tables.Returns detailed information about the requested resource objects.

Parameters
optionsOptional parameters.
  • TIERS: Comma-separated list of tiers to query, leave blank for all tiers.
  • EXPRESSION: An expression to filter the returned objects. Expression is limited to the following operators: =,!=,<,<=,>,>=,+,-,*,AND,OR,LIKE. For details see Expressions. To use a more complex expression, query the ki_catalog.ki_tiered_objects table directly.
  • ORDER_BY: Single column to be sorted by as well as the sort direction, e.g., ‘size asc’. Supported values:
  • LIMIT: An integer indicating the maximum number of results to be returned, per rank, or (-1) to indicate that the maximum number of results allowed by the server should be returned. The number of records returned will never exceed the server’s own limit, defined by the max_get_records_size parameter in the server configuration. The default value is ‘100’.
  • TABLE_NAMES: Comma-separated list of tables to restrict the results to. Use ’*’ to show all tables.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 60869 of file KineticaFunctions.cs.

◆ showResourceObjects() [2/2]

ShowResourceObjectsResponse kinetica.Kinetica.showResourceObjects (ShowResourceObjectsRequestrequest_)
inline

Returns information about the internal sub-components (tiered objects) which use resources of the system.

The request can either return results from actively used objects (default) or it can be used to query the status of the objects of a given list of tables.Returns detailed information about the requested resource objects.

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

Definition at line 60729 of file KineticaFunctions.cs.

◆ ShowResourceObjectsAsync() [1/2]

async System.Threading.Tasks.Task< ShowResourceObjectsResponse > kinetica.Kinetica.ShowResourceObjectsAsync (IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Returns information about the internal sub-components (tiered objects) which use resources of the system.

(async)

The request can either return results from actively used objects (default) or it can be used to query the status of the objects of a given list of tables.Returns detailed information about the requested resource objects.

Parameters
optionsOptional parameters.
  • TIERS: Comma-separated list of tiers to query, leave blank for all tiers.
  • EXPRESSION: An expression to filter the returned objects. Expression is limited to the following operators: =,!=,<,<=,>,>=,+,-,*,AND,OR,LIKE. For details see Expressions. To use a more complex expression, query the ki_catalog.ki_tiered_objects table directly.
  • ORDER_BY: Single column to be sorted by as well as the sort direction, e.g., ‘size asc’. Supported values:
  • LIMIT: An integer indicating the maximum number of results to be returned, per rank, or (-1) to indicate that the maximum number of results allowed by the server should be returned. The number of records returned will never exceed the server’s own limit, defined by the max_get_records_size parameter in the server configuration. The default value is ‘100’.
  • TABLE_NAMES: Comma-separated list of tables to restrict the results to. Use ’*’ to show all tables.
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 60988 of file KineticaFunctions.cs.

◆ ShowResourceObjectsAsync() [2/2]

async System.Threading.Tasks.Task< ShowResourceObjectsResponse > kinetica.Kinetica.ShowResourceObjectsAsync (ShowResourceObjectsRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Returns information about the internal sub-components (tiered objects) which use resources of the system.

(async)

The request can either return results from actively used objects (default) or it can be used to query the status of the objects of a given list of tables.Returns detailed information about the requested resource objects.

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 60749 of file KineticaFunctions.cs.