Skip to main content

◆ repartitionGraph() [1/2]

RepartitionGraphResponse kinetica.Kinetica.repartitionGraph (RepartitionGraphRequestrequest_)
inline

Rebalances an existing partitioned graph.

IMPORTANT: It’s highly recommended that you review the Graphs and Solvers concepts documentation, the Graph REST Tutorial, and/or some graph examples before using this endpoint.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 56826 of file KineticaFunctions.cs.

◆ repartitionGraph() [2/2]

RepartitionGraphResponse kinetica.Kinetica.repartitionGraph (stringgraph_name,
IDictionary< string, string >options = null )
inline

Rebalances an existing partitioned graph.

IMPORTANT: It’s highly recommended that you review the Graphs and Solvers concepts documentation, the Graph REST Tutorial, and/or some graph examples before using this endpoint.

Parameters
graph_nameName of the graph resource to rebalance.
optionsOptional parameters.
  • NEW_GRAPH_NAME: If a non-empty value is specified, the original graph will be kept (non-default behavior) and a new balanced graph will be created under this given name. When the value is empty (default), the generated ‘balanced’ graph will replace the original ‘unbalanced’ graph under the same graph name. The default value is ”.
  • SOURCE_NODE: The distributed shortest path solve is run from this source node to all the nodes in the graph to create balanced partitions using the iso-distance levels of the solution. The source node is selected by the rebalance algorithm automatically (default case when the value is an empty string). Otherwise, the user specified node is used as the source. The default value is ”.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 56896 of file KineticaFunctions.cs.

◆ RepartitionGraphAsync() [1/2]

async System.Threading.Tasks.Task< RepartitionGraphResponse > kinetica.Kinetica.RepartitionGraphAsync (RepartitionGraphRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Rebalances an existing partitioned graph.

(async)

IMPORTANT: It’s highly recommended that you review the Graphs and Solvers concepts documentation, the Graph REST Tutorial, and/or some graph examples before using this endpoint.

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 56848 of file KineticaFunctions.cs.

◆ RepartitionGraphAsync() [2/2]

async System.Threading.Tasks.Task< RepartitionGraphResponse > kinetica.Kinetica.RepartitionGraphAsync (stringgraph_name,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Rebalances an existing partitioned graph.

(async)

IMPORTANT: It’s highly recommended that you review the Graphs and Solvers concepts documentation, the Graph REST Tutorial, and/or some graph examples before using this endpoint.

Parameters
graph_nameName of the graph resource to rebalance.
optionsOptional parameters.
  • NEW_GRAPH_NAME: If a non-empty value is specified, the original graph will be kept (non-default behavior) and a new balanced graph will be created under this given name. When the value is empty (default), the generated ‘balanced’ graph will replace the original ‘unbalanced’ graph under the same graph name. The default value is ”.
  • SOURCE_NODE: The distributed shortest path solve is run from this source node to all the nodes in the graph to create balanced partitions using the iso-distance levels of the solution. The source node is selected by the rebalance algorithm automatically (default case when the value is an empty string). Otherwise, the user specified node is used as the source. The default value is ”.
The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 56944 of file KineticaFunctions.cs.