Retrieve GSI Settings

  • reference
To retrieve the global secondary index settings use GET /settings/indexes.

Description

This endpoint returns the current index settings for the cluster.

HTTP Method and URI

GET http://<host>:8091/settings/indexes

Response Codes

Response Code Description

200

Success.

401

Unauthorized.

Sample Curl Command

The following example retrieves the global secondary index settings of the cluster that the node localhost is a part of.

curl -X GET -u 'Administrator:password' 'http://localhost:8091/settings/indexes'

Sample Response

200
{
  "redistributeIndexes": false,
  "numReplica": 0,
  "enablePageBloomFilter": false,
  "enableShardAffinity": false,
  "indexerThreads": 4,
  "memorySnapshotInterval": 200,
  "stableSnapshotInterval": 5000,
  "maxRollbackPoints": 2,
  "logLevel": "verbose",
  "storageMode": "plasma"
}
401

This response code returns an empty body.