Apache Pinot · JSON Structure

Apache Pinot Sql Query Response Structure

SqlQueryResponse schema from Apache Pinot

Type: object Properties: 6
AnalyticsDatabaseLow LatencyOLAPReal-TimeApacheOpen Source

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

Properties

resultTable numDocsScanned totalDocs timeUsedMs numServersQueried numServersResponded

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-sql-query-response-structure.json",
  "description": "SqlQueryResponse schema from Apache Pinot",
  "type": "object",
  "properties": {
    "resultTable": {
      "$ref": "#/components/schemas/ResultTable"
    },
    "numDocsScanned": {
      "type": "int32",
      "example": 1000
    },
    "totalDocs": {
      "type": "int32",
      "example": 10000
    },
    "timeUsedMs": {
      "type": "int32",
      "example": 45
    },
    "numServersQueried": {
      "type": "int32",
      "example": 4
    },
    "numServersResponded": {
      "type": "int32",
      "example": 4
    }
  },
  "name": "SqlQueryResponse"
}