Kinetica C# API
Version 7.2.3.0
|
A set of parameters for Kinetica.adminRebalance. More...
Classes | |
struct | Options |
A set of string constants for the parameter options. More... | |
Public Member Functions | |
AdminRebalanceRequest () | |
Constructs an AdminRebalanceRequest object with default parameters. More... | |
AdminRebalanceRequest (IDictionary< string, string > options=null) | |
Constructs an AdminRebalanceRequest object with the specified parameters. More... | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
IDictionary< string, string > | options = new Dictionary<string, string>() [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.adminRebalance.
Rebalance the data in the cluster so that all nodes contain an equal number of records approximately and/or rebalance the shards to be equally distributed (as much as possible) across all the ranks.
The database must be offline for this operation, see Kinetica.adminOffline
* If Kinetica.adminRebalance is invoked after a change is made to the cluster, e.g., a host was added or removed, sharded data will be evenly redistributed across the cluster by number of shards per rank while unsharded data will be redistributed across the cluster by data size per rank
* If Kinetica.adminRebalance is invoked at some point when unsharded data (a.k.a. randomly-sharded) in the cluster is unevenly distributed over time, sharded data will not move while unsharded data will be redistributed across the cluster by data size per rank
NOTE: Replicated data will not move as a result of this call
This endpoint's processing time depends on the amount of data in the system, thus the API call may time out if run directly. It is recommended to run this endpoint asynchronously via Kinetica.createJob.
Definition at line 41 of file AdminRebalance.cs.
|
inline |
Constructs an AdminRebalanceRequest object with default parameters.
Definition at line 321 of file AdminRebalance.cs.
|
inline |
Constructs an AdminRebalanceRequest object with the specified parameters.
options | Optional parameters.
|
Definition at line 481 of file AdminRebalance.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 317 of file AdminRebalance.cs.