Kinetica C# API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Pages
AdminRebalance.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 
27  {
28 
170  public struct Options
171  {
172 
190  public const string REBALANCE_SHARDED_DATA = "rebalance_sharded_data";
191  public const string TRUE = "true";
192  public const string FALSE = "false";
193 
212  public const string REBALANCE_UNSHARDED_DATA = "rebalance_unsharded_data";
213 
219  public const string TABLE_WHITELIST = "table_whitelist";
220 
226  public const string TABLE_BLACKLIST = "table_blacklist";
227 
234  public const string AGGRESSIVENESS = "aggressiveness";
235 
253  public const string COMPACT_AFTER_REBALANCE = "compact_after_rebalance";
254 
270  public const string COMPACT_ONLY = "compact_only";
271 
292  public const string REPAIR_INCORRECTLY_SHARDED_DATA = "repair_incorrectly_sharded_data";
293  } // end struct Options
294 
295 
435  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
436 
437 
441 
585  public AdminRebalanceRequest( IDictionary<string, string> options = null)
586  {
587  this.options = options ?? new Dictionary<string, string>();
588  } // end constructor
589 
590  } // end class AdminRebalanceRequest
591 
592 
593 
598  {
599 
601  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
602 
603  } // end class AdminRebalanceResponse
604 
605 
606 
607 
608 } // end namespace kinetica
A set of results returned by Kinetica.adminRebalance(IDictionary{string, string}).
const string REBALANCE_UNSHARDED_DATA
If true, unsharded data (data without primary keys and without shard keys) will be rebalanced approxi...
AdminRebalanceRequest()
Constructs an AdminRebalanceRequest object with default parameters.
IDictionary< string, string > info
Additional information.
IDictionary< string, string > options
Optional parameters.
const string REPAIR_INCORRECTLY_SHARDED_DATA
Scans for any data sharded incorrectly and re-routes the correct location.
const string REBALANCE_SHARDED_DATA
If true, sharded data will be rebalanced approximately equally across the cluster.
const string TABLE_WHITELIST
Comma-separated list of unsharded table names to rebalance.
const string AGGRESSIVENESS
Influences how much data to send per rebalance round.
A set of parameters for Kinetica.adminRebalance(IDictionary{string, string}).
const string COMPACT_ONLY
Only perform compaction, do not rebalance.
const string TABLE_BLACKLIST
Comma-separated list of unsharded table names to not rebalance.
AdminRebalanceRequest(IDictionary< string, string > options=null)
Constructs an AdminRebalanceRequest object with the specified parameters.
const string COMPACT_AFTER_REBALANCE
Perform compaction of deleted records once the rebalance completes, to reclaim memory and disk space...
KineticaData - class to help with Avro Encoding for Kinetica
Definition: KineticaData.cs:14