Skip to main content

◆ checkTable() [1/2]

CheckTableResponse kinetica.Kinetica.checkTable (CheckTableRequestrequest_)
inline

Scans the requested tables as specified in table_names for integrity.

Any table chunks which fail the check will be marked as corrupt. By default the database will automatically repair corrupt tables (via truncating). Note that since this reads every table column from disk it may be a potentially long-running operation. The option LOCAL_ONLY can be used to skip any table files already written to a remote storage.Returns table corruption results.

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

Definition at line 15967 of file KineticaFunctions.cs.

◆ checkTable() [2/2]

CheckTableResponse kinetica.Kinetica.checkTable (IList< string >table_names,
IDictionary< string, string >options = null )
inline

Scans the requested tables as specified in table_names for integrity.

Any table chunks which fail the check will be marked as corrupt. By default the database will automatically repair corrupt tables (via truncating). Note that since this reads every table column from disk it may be a potentially long-running operation. The option LOCAL_ONLY can be used to skip any table files already written to a remote storage.Returns table corruption results.

Parameters
table_namesList of tables to query. An asterisk returns all tables.
optionsOptional parameters.The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 16062 of file KineticaFunctions.cs.

◆ CheckTableAsync() [1/2]

async System.Threading.Tasks.Task< CheckTableResponse > kinetica.Kinetica.CheckTableAsync (CheckTableRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Scans the requested tables as specified in table_names for integrity.

(async)

Any table chunks which fail the check will be marked as corrupt. By default the database will automatically repair corrupt tables (via truncating). Note that since this reads every table column from disk it may be a potentially long-running operation. The option LOCAL_ONLY can be used to skip any table files already written to a remote storage.Returns table corruption results.

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

◆ CheckTableAsync() [2/2]

async System.Threading.Tasks.Task< CheckTableResponse > kinetica.Kinetica.CheckTableAsync (IList< string >table_names,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Scans the requested tables as specified in table_names for integrity.

(async)

Any table chunks which fail the check will be marked as corrupt. By default the database will automatically repair corrupt tables (via truncating). Note that since this reads every table column from disk it may be a potentially long-running operation. The option LOCAL_ONLY can be used to skip any table files already written to a remote storage.Returns table corruption results.

Parameters
table_namesList of tables to query. An asterisk returns all tables.
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 16133 of file KineticaFunctions.cs.