7 using System.Collections.Generic;
112 public const string TRUE =
"true";
113 public const string FALSE =
"false";
148 public IList<int>
ranks {
get; set; } =
new List<int>();
207 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
278 IDictionary<string, string>
options = null)
280 this.ranks = ranks ??
new List<int>();
281 this.options =
options ??
new Dictionary<string, string>();
302 public IList<string>
results {
get; set; } =
new List<string>();
305 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
const string AGGRESSIVENESS
Influences how much data to send per rebalance round, during the rebalance portion of removing ranks...
IList< int > removed_ranks
Ranks that were removed from the cluster.
const string REBALANCE_UNSHARDED_DATA
When true, unsharded data (data without primary keys and without shard keys) will be rebalanced to ot...
IDictionary< string, string > options
Optional parameters.
IList< string > results
Text description of the result of each rank being removed.
IDictionary< string, string > info
Additional information.
A set of parameters for Kinetica.adminRemoveRanks(IList{int},IDictionary{string, string}).
AdminRemoveRanksRequest(IList< int > ranks, IDictionary< string, string > options=null)
Constructs an AdminRemoveRanksRequest object with the specified parameters.
IList< int > ranks
Rank numbers of the ranks to be removed from the cluster.
KineticaData - class to help with Avro Encoding for Kinetica
AdminRemoveRanksRequest()
Constructs an AdminRemoveRanksRequest object with default parameters.
A set of results returned by Kinetica.adminRemoveRanks(IList{int},IDictionary{string, string}).
const string REBALANCE_SHARDED_DATA
When true, data with primary keys or shard keys will be rebalanced to other ranks prior to rank remov...