Skip to main content

◆ getRecordsBySeries< T >() [1/2]

GetRecordsBySeriesResponse< T > kinetica.Kinetica.getRecordsBySeries< T > (GetRecordsBySeriesRequestrequest_)
inline

Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in table_name. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TThe type of object being retrieved.
Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.
Type Constraints
T :new() 

Definition at line 41343 of file KineticaFunctions.cs.

◆ getRecordsBySeries< T >() [2/2]

GetRecordsBySeriesResponse< T > kinetica.Kinetica.getRecordsBySeries< T > (stringtable_name,
stringworld_table_name,
intoffset = 0,
intlimit = 250,
IDictionary< string, string >options = null )
inline

Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name .

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in table_name . Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TThe type of object being retrieved.
Parameters
table_nameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
world_table_nameName of the table containing the complete series/track information to be returned for the tracks present in the table_name , in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
optionsOptional parameters. The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.
Type Constraints
T :new() 

Definition at line 41439 of file KineticaFunctions.cs.

◆ GetRecordsBySeriesAsync< T >() [1/2]

async System.Threading.Tasks.Task< GetRecordsBySeriesResponse< T > > kinetica.Kinetica.GetRecordsBySeriesAsync< T > (GetRecordsBySeriesRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name.

(async)

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in table_name. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TThe type of object being retrieved.
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.
Type Constraints
T :new() 

Definition at line 41383 of file KineticaFunctions.cs.

◆ GetRecordsBySeriesAsync< T >() [2/2]

async System.Threading.Tasks.Task< GetRecordsBySeriesResponse< T > > kinetica.Kinetica.GetRecordsBySeriesAsync< T > (stringtable_name,
stringworld_table_name,
intoffset = 0,
intlimit = 250,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Retrieves the complete series/track records from the given world_table_name based on the partial track information contained in the table_name .

(async)

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in table_name . Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TThe type of object being retrieved.
Parameters
table_nameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
world_table_nameName of the table containing the complete series/track information to be returned for the tracks present in the table_name , in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
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.
Type Constraints
T :new() 

Definition at line 41495 of file KineticaFunctions.cs.