mirror of https://github.com/apache/druid.git
Add missing API references for coordinator (#10967)
* add miss API references for coordinator * add miss API references for coordinator * add miss API references for coordinator Co-authored-by: yuezhang <yuezhang@freewheel.tv>
This commit is contained in:
parent
d939420f23
commit
95b82dd325
|
@ -169,19 +169,37 @@ If no used segments are found for the given inputs, this API returns `204 No Con
|
|||
|
||||
##### GET
|
||||
|
||||
* `/druid/coordinator/v1/metadata/segments`
|
||||
|
||||
Returns a list of all segments for each datasource enabled in the cluster.
|
||||
|
||||
* `/druid/coordinator/v1/metadata/segments?datasources={dataSourceName1}&datasources={dataSourceName2}`
|
||||
|
||||
Returns a list of all segments for one or more specific datasources enabled in the cluster.
|
||||
|
||||
* `/druid/coordinator/v1/metadata/segments?includeOvershadowedStatus`
|
||||
|
||||
Returns a list of all segments for each datasource with the full segment metadata and an extra field `overshadowed`.
|
||||
|
||||
* `/druid/coordinator/v1/metadata/segments?includeOvershadowedStatus&datasources={dataSourceName1}&datasources={dataSourceName2}`
|
||||
|
||||
Returns a list of all segments for one or more specific datasources with the full segment metadata and an extra field `overshadowed`.
|
||||
|
||||
* `/druid/coordinator/v1/metadata/datasources`
|
||||
|
||||
Returns a list of the names of datasources with at least one used segment in the cluster.
|
||||
|
||||
* `/druid/coordinator/v1/metadata/datasources?includeUnused`
|
||||
|
||||
Returns a list of the names of data sources, regardless of whether there are used segments belonging to those data
|
||||
sources in the cluster or not.
|
||||
Returns a list of the names of datasources, regardless of whether there are used segments belonging to those datasources in the cluster or not.
|
||||
|
||||
* `/druid/coordinator/v1/metadata/datasources?includeDisabled`
|
||||
|
||||
Returns a list of the names of datasources, regardless of whether the datasource is disabled or not.
|
||||
|
||||
* `/druid/coordinator/v1/metadata/datasources?full`
|
||||
|
||||
Returns a list of all data sources with at least one used segment in the cluster. Returns all metadata about those data
|
||||
sources as stored in the metadata store.
|
||||
Returns a list of all datasources with at least one used segment in the cluster. Returns all metadata about those datasources as stored in the metadata store.
|
||||
|
||||
* `/druid/coordinator/v1/metadata/datasources/{dataSourceName}`
|
||||
|
||||
|
|
Loading…
Reference in New Issue