Apache Pinot · JSON Structure

Apache Pinot Table Config Structure

TableConfig schema from Apache Pinot

Type: object Properties: 4
AnalyticsDatabaseLow LatencyOLAPReal-TimeApacheOpen Source

TableConfig is a JSON Structure definition published by Apache Pinot, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

tableName tableType segmentsConfig tenants

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-pinot/refs/heads/main/json-structure/apache-pinot-table-config-structure.json",
  "description": "TableConfig schema from Apache Pinot",
  "type": "object",
  "properties": {
    "tableName": {
      "type": "string",
      "example": "myTable"
    },
    "tableType": {
      "type": "string",
      "enum": [
        "OFFLINE",
        "REALTIME"
      ],
      "example": "OFFLINE"
    },
    "segmentsConfig": {
      "type": "object",
      "properties": {
        "replication": {
          "type": "string",
          "example": "1"
        },
        "timeColumnName": {
          "type": "string"
        }
      }
    },
    "tenants": {
      "type": "object",
      "properties": {
        "broker": {
          "type": "string",
          "example": "DefaultTenant"
        },
        "server": {
          "type": "string",
          "example": "DefaultTenant"
        }
      }
    }
  },
  "name": "TableConfig"
}