index-column-details
Retrieve detailed index and column information for a specific segment in Apache Pinot tables to analyze and optimize data structure and query performance.
Instructions
Get index/column details for a segment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
segmentName | Yes | ||
tableName | Yes |
Input Schema (JSON Schema)
{
"properties": {
"segmentName": {
"type": "string"
},
"tableName": {
"type": "string"
}
},
"required": [
"tableName",
"segmentName"
],
"type": "object"
}