Skip to main content
POST
/
searchCluster
Create a cluster
import requests

url = "https://{FUSION HOST}/api/searchCluster"

payload = {
    "authConfig": {},
    "validateCluster": True
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
{
  "id": "<string>",
  "connectString": "<string>",
  "zkClientTimeout": 123,
  "zkConnectTimeout": 123,
  "cloud": true,
  "bufferFlushInterval": 123,
  "bufferSize": 123,
  "concurrency": 123,
  "authConfig": {
    "authType": "NONE",
    "username": "<string>",
    "password": "<string>",
    "keyTab": "<string>",
    "principal": "<string>"
  },
  "validateCluster": true
}

Query Parameters

validate
boolean

Before creating the cluster definition, verify that Fusion can connect to this new search cluster correctly.

Body

application/json

JSON-formatted cluster configuration values.

authConfig
object
validateCluster
boolean

Response

200 - application/json

successful operation

id
string
connectString
string
zkClientTimeout
integer
zkConnectTimeout
integer
cloud
boolean
bufferFlushInterval
integer
bufferSize
integer
concurrency
integer
authConfig
object
validateCluster
boolean