Kinetica C# API  Version 7.1.10.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
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 
10 
11 namespace kinetica
12 {
13 
21  {
22 
173  public struct Options
174  {
175 
191  public const string REBUILD_ON_ERROR = "rebuild_on_error";
192  public const string TRUE = "true";
193  public const string FALSE = "false";
194 
210  public const string VERIFY_NULLS = "verify_nulls";
211 
230  public const string VERIFY_PERSIST = "verify_persist";
231 
248  public const string CONCURRENT_SAFE = "concurrent_safe";
249 
265  public const string VERIFY_RANK0 = "verify_rank0";
266 
286  public const string DELETE_ORPHANED_TABLES = "delete_orphaned_tables";
287 
304  public const string VERIFY_ORPHANED_TABLES_ONLY = "verify_orphaned_tables_only";
305  } // end struct Options
306 
307 
456  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
457 
458 
461  public AdminVerifyDbRequest() { }
462 
615  public AdminVerifyDbRequest( IDictionary<string, string> options = null)
616  {
617  this.options = options ?? new Dictionary<string, string>();
618  } // end constructor
619 
620  } // end class AdminVerifyDbRequest
621 
622 
623 
628  {
629 
632  public bool verified_ok { get; set; } = false;
633 
637  public IList<string> error_list { get; set; } = new List<string>();
638 
643  public long orphaned_tables_total_size { get; set; }
644 
646  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
647 
648  } // end class AdminVerifyDbResponse
649 
650 
651 
652 
653 } // end namespace kinetica
IDictionary< string, string > info
Additional information.
IList< string > error_list
List of errors found while validating the database internal state.
const string VERIFY_NULLS
When true, verifies that null values are set to zero Supported values: TRUE FALSE The default value...
const string REBUILD_ON_ERROR
[DEPRECATED – Use the Rebuild DB feature of GAdmin instead.
const string VERIFY_RANK0
If true, compare rank0 table metadata against workers&#39; metadata Supported values: TRUE FALSE The de...
const string VERIFY_PERSIST
When true, persistent objects will be compared against their state in memory and workers will be chec...
const string DELETE_ORPHANED_TABLES
If true, orphaned table directories found on workers for which there is no corresponding metadata wil...
AdminVerifyDbRequest(IDictionary< string, string > options=null)
Constructs an AdminVerifyDbRequest object with the specified parameters.
long orphaned_tables_total_size
If verify_persist is true, verify_orphaned_tables_only is true or delete_orphaned_tables is true...
bool verified_ok
True if no errors were found, false otherwise.
const string CONCURRENT_SAFE
When true, allows this endpoint to be run safely with other concurrent database operations.
const string VERIFY_ORPHANED_TABLES_ONLY
If true, only the presence of orphaned table directories will be checked, all persistence checks will...
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.adminVerifyDb(IDictionary{string, string}). ...
A set of parameters for Kinetica.adminVerifyDb(IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14
AdminVerifyDbRequest()
Constructs an AdminVerifyDbRequest object with default parameters.