update-table-config
Modify table configurations in Apache Pinot by updating the table name and config JSON. Skip specified validation types to customize updates.
Instructions
Update table configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tableConfigJson | Yes | ||
tableName | Yes | ||
validationTypesToSkip | No |
Input Schema (JSON Schema)
{
"properties": {
"tableConfigJson": {
"type": "string"
},
"tableName": {
"type": "string"
},
"validationTypesToSkip": {
"type": "string"
}
},
"required": [
"tableName",
"tableConfigJson"
],
"type": "object"
}