7 using System.Collections.Generic;
81 public const string TRUE =
"true";
82 public const string FALSE =
"false";
87 public IList<string>
table_names {
get;
set; } =
new List<string>();
90 public IDictionary<string, string>
table_types {
get;
set; } =
new Dictionary<string, string>();
148 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
218 IDictionary<string, string>
options =
null)
220 this.table_names =
table_names ??
new List<string>();
221 this.table_types =
table_types ??
new Dictionary<string, string>();
232 public IList<string>
table_names {
get;
set; } =
new List<string>();
238 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
A set of results returned by Kinetica.adminRepairTable.
KineticaData - class to help with Avro Encoding for Kinetica
IList< string > table_names
List of tables to query.
const string SHRINK_COLUMNS
Shrinks corrupted chunks to the shortest column.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.adminRepairTable.
const string ALTER_TABLE
Reset columns modification after incomplete alter column.
IList< string > table_names
List of repaired tables.
AdminRepairTableRequest()
Constructs an AdminRepairTableRequest object with default parameters.
IList< string > repair_status
List of repair status by table.
A set of string constants for the parameter options.
AdminRepairTableRequest(IList< string > table_names, IDictionary< string, string > table_types, IDictionary< string, string > options=null)
Constructs an AdminRepairTableRequest object with the specified parameters.
IDictionary< string, string > table_types
ID of the type per table.
const string DELETE_CHUNKS
Deletes any corrupted chunks.
const string REPLAY_WAL
Manually invokes write-ahead log (WAL) replay on the table.
IDictionary< string, string > options
Optional parameters.
const string VERIFY_ALL
If FALSE only table chunk data already known to be corrupted will be repaired.
const string REPAIR_POLICY
Corrective action to take.