Kinetica   C#   API  Version 7.2.3.0
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 namespace kinetica
10 {
42  {
46  public struct Options
47  {
63  public const string REBALANCE_SHARDED_DATA = "rebalance_sharded_data";
64 
65  public const string TRUE = "true";
66  public const string FALSE = "false";
67 
81  public const string REBALANCE_UNSHARDED_DATA = "rebalance_unsharded_data";
82 
91  public const string TABLE_INCLUDES = "table_includes";
92 
101  public const string TABLE_EXCLUDES = "table_excludes";
102 
112  public const string AGGRESSIVENESS = "aggressiveness";
113 
127  public const string COMPACT_AFTER_REBALANCE = "compact_after_rebalance";
128 
144  public const string COMPACT_ONLY = "compact_only";
145 
159  public const string REPAIR_INCORRECTLY_SHARDED_DATA = "repair_incorrectly_sharded_data";
160  } // end struct Options
161 
317  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
318 
322 
481  public AdminRebalanceRequest( IDictionary<string, string> options = null)
482  {
483  this.options = options ?? new Dictionary<string, string>();
484  } // end constructor
485  } // end class AdminRebalanceRequest
486 
491  {
493  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
494  } // end class AdminRebalanceResponse
495 } // end namespace kinetica
A set of results returned by Kinetica.adminRebalance.
const string REBALANCE_UNSHARDED_DATA
If TRUE, unsharded data (a.k.a.
A set of string constants for the parameter options.
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 data to the correct location.
const string REBALANCE_SHARDED_DATA
If TRUE, sharded data will be rebalanced approximately equally across the cluster.
const string TABLE_INCLUDES
Comma-separated list of unsharded table names to rebalance.
const string TABLE_EXCLUDES
Comma-separated list of unsharded table names to not rebalance.
const string AGGRESSIVENESS
Influences how much data is moved at a time during rebalance.
A set of parameters for Kinetica.adminRebalance.
const string COMPACT_ONLY
If set to TRUE, ignore rebalance options and attempt to perform compaction of deleted records to recl...
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