You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by GitBox <gi...@apache.org> on 2018/08/01 22:15:58 UTC

[GitHub] surekhasaharan opened a new pull request #6094: Introduce SystemSchema tables (#5989)

surekhasaharan opened a new pull request #6094: Introduce SystemSchema tables (#5989)
URL: https://github.com/apache/incubator-druid/pull/6094
 
 
   SYSTEM_TABLES provide visibility into the druid segments, servers and tasks.
   
   * SEGMENTS table provides details on served and published segments
   * SERVERS table provides details on data servers
   * SERVERSEGMETS table is the JOIN of SEGMENTS and SERVERS
   * TASKS table provides details on tasks from overlord
   
   Sample sql queries to retrieve data from these tables:
   ```sql
   select * from SYS.SEGMENTS where DATASOURCE='wikipedia';
   select * from SYS.SERVERS;
   select * from SYS.TASKS where STATUS='FAILED';
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org