7 using System.Collections.Generic;
33 public class AdminRemoveRanksRequest : KineticaData
57 public const string TRUE =
"true";
58 public const string FALSE =
"false";
98 public IList<string>
ranks {
get;
set; } =
new List<string>();
164 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
248 IDictionary<string, string>
options =
null)
250 this.ranks =
ranks ??
new List<string>();
258 public class AdminRemoveRanksResponse : KineticaData
264 public IList<string>
removed_ranks {
get;
set; } =
new List<string>();
267 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
AdminRemoveRanksRequest(IList< string > ranks, IDictionary< string, string > options=null)
Constructs an AdminRemoveRanksRequest object with the specified parameters.
const string REBALANCE_UNSHARDED_DATA
If TRUE, unsharded data (a.k.a.
IList< string > removed_ranks
The number assigned to each rank removed from the cluster.
IList< string > ranks
Each array value designates one or more ranks to remove from the cluster.
IDictionary< string, string > options
Optional parameters.
const string REBALANCE_SHARDED_DATA
If TRUE, sharded data will be rebalanced approximately equally across the cluster.
IDictionary< string, string > info
Additional information.
const string AGGRESSIVENESS
Influences how much data is moved at a time during rebalance.
AdminRemoveRanksRequest()
Constructs an AdminRemoveRanksRequest object with default parameters.