You can set the number of parallel indexers that will be used on
each node when view indexes are updated. To get the current
setting of the number of parallel indexers, use a
GET request.
| Method | GET /settings/maxParallelIndexers |
| Request Data | None |
| Response Data | JSON of the global and node-specific parallel indexer configuration |
| Authentication Required | no |
For example:
GET http://127.0.0.1:8091/settings/maxParallelIndexersThis returns a JSON structure of the current settings, providing both the globally configured value, and individual node configuration:
{ "globalValue" : 4, "nodes" : { "ns_1@127.0.0.1" : 4 } }
To set the value, POST to the URL specifying
a URL-encoded value to the globalValue
argument.
| Method | POST /settings/maxParallelIndexers |
| Request Data | None |
| Response Data | JSON of the global and node-specific parallel indexer configuration |
| Authentication Required | yes |
| Payload Arguments | |
globalValue | Required parameter. Numeric. Sets the global number of parallel indexers. Minimum of 1, maximum 1024. |
| Return Codes | |
| 400 | globalValue not specified or invalid |