update-schema
Modify and update an existing schema in Apache Pinot using JSON input, with options to reload or force changes as needed.
Instructions
Update an existing schema
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | ||
reload | No | ||
schemaJson | Yes | ||
schemaName | Yes |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"default": false,
"type": "boolean"
},
"reload": {
"default": false,
"type": "boolean"
},
"schemaJson": {
"type": "string"
},
"schemaName": {
"type": "string"
}
},
"required": [
"schemaName",
"schemaJson"
],
"type": "object"
}