apache/pinot

Support Describe Pinot table and schema

オープン

#6,298 opened on 2020/11/27

 (9 件のコメント) (0 件のリアクション) (1 人の担当者)Java (1,234 件のフォーク)batch import
featurehelp wanted

Repository metrics

Stars
 (4,937 個のスター)
PR merge metrics
 (PR metrics pending)

説明

Pinot table conf and schema access is from restful API only right now.

It would be good to support the built-in system tables, and we can query schema in SQL style. This will be useful for users to have a similar onboarding experience that everything can come from the query console. It's also good for Pinot integrations with other systems.

Query examples for references:

SHOW TABLES
DESCRIBE TABLE myTable
SHOW COLUMNS FROM myTable
SELECT 
    TABLE_SCHEMA,
    TABLE_NAME,
    COLUMN_NAME
FROM
    INFORMATION_SCHEMA.COLUMNS
WHERE
    TABLE_SCHEMA <> 'INFORMATION_SCHEMA'

コントリビューターガイド