Kinetica C# API  Version 7.1.10.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 
52  {
53 
201  public struct Options
202  {
203 
223  public const string REBALANCE_SHARDED_DATA = "rebalance_sharded_data";
224  public const string TRUE = "true";
225  public const string FALSE = "false";
226 
247  public const string REBALANCE_UNSHARDED_DATA = "rebalance_unsharded_data";
248 
254  public const string TABLE_INCLUDES = "table_includes";
255 
261  public const string TABLE_EXCLUDES = "table_excludes";
262 
269  public const string AGGRESSIVENESS = "aggressiveness";
270 
288  public const string COMPACT_AFTER_REBALANCE = "compact_after_rebalance";
289 
306  public const string COMPACT_ONLY = "compact_only";
307 
331  public const string REPAIR_INCORRECTLY_SHARDED_DATA = "repair_incorrectly_sharded_data";
332  } // end struct Options
333 
334 
480  public IDictionary<string, string> options { get; set; } = new Dictionary<string, string>();
481 
482 
486 
636  public AdminRebalanceRequest( IDictionary<string, string> options = null)
637  {
638  this.options = options ?? new Dictionary<string, string>();
639  } // end constructor
640 
641  } // end class AdminRebalanceRequest
642 
643 
644 
649  {
650 
652  public IDictionary<string, string> info { get; set; } = new Dictionary<string, string>();
653 
654  } // end class AdminRebalanceResponse
655 
656 
657 
658 
659 } // end namespace kinetica
A set of results returned by Kinetica.adminRebalance(IDictionary{string, string}).
const string REBALANCE_UNSHARDED_DATA
If true, unsharded data (a.k.a.
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(IDictionary{string, string}).
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