Click or drag to resize

SimpleStatementSetRoutingKey Method

Set the routing key for this query.

This method allows to manually provide a routing key for this query. It is thus optional since the routing key is only an hint for token aware load balancing policy but is never mandatory.

If the partition key for the query is composite, use the #setRoutingKey(ByteBuffer...) method instead to build the routing key.

Namespace:  Dse
Assembly:  Dse (in Dse.dll) Version: 2.9.0
Syntax
C#
public SimpleStatement SetRoutingKey(
	params RoutingKey[] routingKeyComponents
)

Parameters

routingKeyComponents
Type: DseRoutingKey
the raw (binary) values to compose to obtain the routing key.

Return Value

Type: SimpleStatement
this SimpleStatement object. Query#getRoutingKey
See Also