dsetool set_core_property
Sets the properties and values in the dse-search.properties resource for the search index.
Synopsis
dsetool set_core_property <keyspace_name>.<table_name>
shard.set.cover.finder=DYNAMIC|STATIC |
s/Users/annette.dennis/github/dse-docs/datastax_enterprise/tools/dsetool/dsetoolSet_core_property.ditahard.shuffling.strategy=HOST|QUERY|HOST_QUERY|RANDOM|SEED |
shard.set.cover.finder.inertia=<inertia_integer>
Syntax legend
| Syntax conventions | Description |
|---|---|
Italic, bold, or |
Syntax diagrams and code samples use one or more of these styles to mark placeholders for variable values. Replace placeholders with a valid option or your own user-defined value. In CQL statements, angle brackets are required to enclose data types in a set, list, map, or tuple.
Separate the data types with a comma.
For example: In Search CQL statements, angle brackets are used to identify the entity and literal value to overwrite the XML element in the schema and |
|
Square brackets surround optional command arguments. Do not type the square brackets. |
|
Parentheses identify a group to choose from. Do not type the parentheses. |
|
A pipe separates alternative elements. Type any one of the elements. Do not type the pipe. |
|
Indicates that you can repeat the syntax element as often as required. |
|
Single quotation marks must surround literal strings in CQL statements.
Use single quotation marks to preserve upper case.
+
For Search CQL only: Single quotation marks surround an entire XML schema declaration, such as |
|
Map collection.
Curly braces enclose maps ( |
|
Ends a CQL statement. |
|
Separate command line options from command arguments with two hyphens. This syntax is useful when arguments might be mistaken for command line options. |
- keyspace_name.table_name
-
Required. The keyspace and table names of the search index. Keyspace and table names are case-sensitive. Enclose names that contain uppercase in double quotation marks.
For shard.set.cover.finder:
DYNAMIC Use randomization in token range and endpoint selection for load balancing. STATIC is the default for new cores, starting in DSE 6.7. In prior releases, DYNAMIC was the default. If you are upgrading to DSE 6.8, refer to the Upgrade Guide.
STATIC Requires load balanced client. Suitable for 8+ vnodes. The same query on a node uses the same token ranges and endpoints. Creates fewer token filters, and has better performance than DYNAMIC. STATIC is the default, starting in DSE 6.7.
When shard.set.cover.finder=DYNAMIC, values for shard.shuffling.strategy:
- HOST
-
Shards are selected based on the host that received the query.
- QUERY
-
Shards are selected based on the query string.
- HOST_QUERY
-
Shards are selected by host x query.
- RANDOM
-
Suitable only for 8 or fewer vnodes. Different random set of shards are selected with each request (default).
- SEED
-
Selects the same shard from one query to another.
When shard.set.cover.finder=STATIC, values for shard.set.cover.finder.inertia:
- inertia_integer
-
Increasing the inertia value from the default of 1 may improve performance for clusters with more than 1 vnode and more than 20 nodes. The default is appropriate for most workloads.
Examples
To not use randomization to select token ranges and endpoints:
dsetool set_core_property demo.health_data shard.set.cover.finder=STATIC
dsetool reload_core demo.health_data reindex=false
To use default randomization to select token ranges and endpoints:
dsetool set_core_property demo.health_data shard.set.cover.finder=DYNAMIC
dsetool reload_core demo.health_data reindex=false
|
As shown in the examples, after setting the core property value, be sure to reload the search index. While you can use
You do not need to reindex the specified table unless schema changes were made. Refer to Reloading the search index. |