Kinetica   C#   API  Version 7.2.3.1
AdminVerifyDb.cs
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the Kinetica schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 
7 using System.Collections.Generic;
8 
9 namespace kinetica;
10 
19 {
23  public struct Options
24  {
38  public const string REBUILD_ON_ERROR = "rebuild_on_error";
39 
40  public const string TRUE = "true";
41  public const string FALSE = "false";
42 
56  public const string VERIFY_NULLS = "verify_nulls";
57 
72  public const string VERIFY_PERSIST = "verify_persist";
73 
88  public const string CONCURRENT_SAFE = "concurrent_safe";
89 
103  public const string VERIFY_RANK0 = "verify_rank0";
104 
119  public const string DELETE_ORPHANED_TABLES = "delete_orphaned_tables";
120 
135  public const string VERIFY_ORPHANED_TABLES_ONLY = "verify_orphaned_tables_only";
136 
142  public const string TABLE_INCLUDES = "table_includes";
143 
149  public const string TABLE_EXCLUDES = "table_excludes";
150  } // end struct Options
151 
307  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
308 
311  public AdminVerifyDbRequest() { }
312 
472  public AdminVerifyDbRequest( IDictionary<string, string> options = null)
473  {
474  this.options = options ?? new Dictionary<string, string>();
475  } // end constructor
476 } // end class AdminVerifyDbRequest
477 
482 {
485  public bool verified_ok { get; set; } = false;
486 
490  public IList<string> error_list { get; set; } = new List<string>();
491 
501  public long orphaned_tables_total_size { get; set; }
502 
504  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
505 } // end class AdminVerifyDbResponse
AdminVerifyDbRequest()
Constructs an AdminVerifyDbRequest object with default parameters.
const string VERIFY_PERSIST
When TRUE, persistent objects will be compared against their state in memory and workers will be chec...
A set of string constants for the parameter options.
const string VERIFY_NULLS
When TRUE, verifies that null values are set to zero.
const string REBUILD_ON_ERROR
[DEPRECATED] Use the Rebuild DB feature of GAdmin instead.
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
A set of results returned by Kinetica.adminVerifyDb.
bool verified_ok
True if no errors were found, false otherwise.
const string DELETE_ORPHANED_TABLES
If TRUE, orphaned table directories found on workers for which there is no corresponding metadata wil...
const string CONCURRENT_SAFE
When TRUE, allows this endpoint to be run safely with other concurrent database operations.
IList< string > error_list
List of errors found while validating the database internal state.
const string TABLE_INCLUDES
Comma-separated list of table names to include when verifying table consistency on wokers.
IDictionary< string, string > options
Optional parameters.
AdminVerifyDbRequest(IDictionary< string, string > options=null)
Constructs an AdminVerifyDbRequest object with the specified parameters.
IDictionary< string, string > info
Additional information.
long orphaned_tables_total_size
If VERIFY_PERSIST is TRUE, VERIFY_ORPHANED_TABLES_ONLY is TRUE or DELETE_ORPHANED_TABLES is TRUE,...
const string TABLE_EXCLUDES
Comma-separated list of table names to exclude when verifying table consistency on wokers.
A set of parameters for Kinetica.adminVerifyDb.
const string VERIFY_ORPHANED_TABLES_ONLY
If TRUE, only the presence of orphaned table directories will be checked, all persistence and table c...
const string VERIFY_RANK0
If TRUE, compare rank0 table metadata against workers' metadata.