Skip to content

Commit 16ef8ee

Browse files
authored
Merge pull request #512 from 317brian/remove-druid-banner
remove druid summit banner
2 parents 0e99f15 + a5e56ac commit 16ef8ee

1,185 files changed

Lines changed: 18291 additions & 3360 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/31.0.0/release-info/release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,4 +704,4 @@ Bumped the versions of the following dependencies:
704704
- Updated Blueprint dependencies from v4 to v5 in web console [#16756](https://github.com/apache/druid/pull/16756)
705705
- `io.grpc:grpc-netty-shaded` from 1.57.2 to 1.65.1 [#16731](https://github.com/apache/druid/pull/16731)
706706
- `jclouds.version` from 2.5.0 to 2.6.0 [#16796](https://github.com/apache/druid/pull/16796)
707-
- Axios to 1.7.4 [#16898](https://github.com/apache/druid/pull/16898)
707+
- Axios to 1.7.4 [#16898](https://github.com/apache/druid/pull/16898)

docs/latest/api-reference/automatic-compaction-api.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@ import TabItem from '@theme/TabItem';
2727
~ under the License.
2828
-->
2929

30-
This topic describes the status and configuration API endpoints for [automatic compaction](../data-management/automatic-compaction.md) in Apache Druid. You can configure automatic compaction in the Druid web console or API.
30+
This topic describes the status and configuration API endpoints for [automatic compaction using Coordinator duties](../data-management/automatic-compaction.md#auto-compaction-using-coordinator-duties) in Apache Druid. You can configure automatic compaction in the Druid web console or API.
31+
32+
:::info Experimental
33+
34+
Instead of the automatic compaction API, you can use the supervisor API to submit auto-compaction jobs using compaction supervisors. For more information, see [Auto-compaction using compaction supervisors](../data-management/automatic-compaction.md#auto-compaction-using-compaction-supervisors).
35+
36+
:::
3137

3238
In this topic, `http://ROUTER_IP:ROUTER_PORT` is a placeholder for your Router service address and port. Replace it with the information for your deployment. For example, use `http://localhost:8888` for quickstart deployments.
3339

docs/latest/api-reference/legacy-metadata-api.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,11 @@ Returns a list of all segments, overlapping with any of given intervals, for a d
176176

177177
`POST /druid/coordinator/v1/metadata/dataSourceInformation`
178178

179-
Returns information about the specified datasources, including the datasource schema.
179+
Returns information about the specified datasources, including the datasource schema.
180+
181+
`POST /druid/coordinator/v1/metadata/bootstrapSegments`
182+
183+
Returns information about bootstrap segments for all datasources. The returned set includes all broadcast segments if broadcast rules are configured.
180184

181185
<a name="coordinator-datasources"></a>
182186

docs/latest/api-reference/service-status-api.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ You can use each endpoint with the ports for each type of service. The following
4545
| Router|8888|
4646
| Broker|8082|
4747
| Historical|8083|
48-
| MiddleManager|8091|
48+
| Middle Manager|8091|
4949

5050
### Get service information
5151

@@ -791,11 +791,11 @@ Host: http://OVERLORD_IP:OVERLORD_PORT
791791
</details>
792792

793793

794-
## MiddleManager
794+
## Middle Manager
795795

796-
### Get MiddleManager state status
796+
### Get Middle Manager state status
797797

798-
Retrieves the enabled state of the MiddleManager. Returns JSON object keyed by the combined `druid.host` and `druid.port` with a boolean `true` or `false` state as the value.
798+
Retrieves the enabled state of the Middle Manager process. Returns JSON object keyed by the combined `druid.host` and `druid.port` with a boolean `true` or `false` state as the value.
799799

800800
#### URL
801801

@@ -810,7 +810,7 @@ Retrieves the enabled state of the MiddleManager. Returns JSON object keyed by t
810810

811811
<br/>
812812

813-
*Successfully retrieved MiddleManager state*
813+
*Successfully retrieved Middle Manager state*
814814

815815
</TabItem>
816816
</Tabs>
@@ -855,7 +855,7 @@ Host: http://MIDDLEMANAGER_IP:MIDDLEMANAGER_PORT
855855

856856
### Get active tasks
857857

858-
Retrieves a list of active tasks being run on MiddleManager. Returns JSON list of task ID strings. Note that for normal usage, you should use the `/druid/indexer/v1/tasks` [Tasks API](./tasks-api.md) endpoint or one of the task state specific variants instead.
858+
Retrieves a list of active tasks being run on the Middle Manager. Returns JSON list of task ID strings. Note that for normal usage, you should use the `/druid/indexer/v1/tasks` [Tasks API](./tasks-api.md) endpoint or one of the task state specific variants instead.
859859

860860
#### URL
861861

@@ -984,9 +984,9 @@ Host: http://MIDDLEMANAGER_IP:MIDDLEMANAGER_PORT
984984

985985
</details>
986986

987-
### Disable MiddleManager
987+
### Disable Middle Manager
988988

989-
Disables a MiddleManager, causing it to stop accepting new tasks but complete all existing tasks. Returns a JSON object
989+
Disables a Middle Manager, causing it to stop accepting new tasks but complete all existing tasks. Returns a JSON object
990990
keyed by the combined `druid.host` and `druid.port`.
991991

992992
#### URL
@@ -1002,7 +1002,7 @@ keyed by the combined `druid.host` and `druid.port`.
10021002

10031003
<br/>
10041004

1005-
*Successfully disabled MiddleManager*
1005+
*Successfully disabled Middle Manager*
10061006

10071007
</TabItem>
10081008
</Tabs>
@@ -1043,9 +1043,9 @@ Host: http://MIDDLEMANAGER_IP:MIDDLEMANAGER_PORT
10431043

10441044
</details>
10451045

1046-
### Enable MiddleManager
1046+
### Enable Middle Manager
10471047

1048-
Enables a MiddleManager, allowing it to accept new tasks again if it was previously disabled. Returns a JSON object keyed by the combined `druid.host` and `druid.port`.
1048+
Enables a Middle Manager, allowing it to accept new tasks again if it was previously disabled. Returns a JSON object keyed by the combined `druid.host` and `druid.port`.
10491049

10501050
#### URL
10511051

@@ -1060,7 +1060,7 @@ Enables a MiddleManager, allowing it to accept new tasks again if it was previou
10601060

10611061
<br/>
10621062

1063-
*Successfully enabled MiddleManager*
1063+
*Successfully enabled Middle Manager*
10641064

10651065
</TabItem>
10661066
</Tabs>

0 commit comments

Comments
 (0)