2018-12-13 14:47:20 -05:00
---
2019-08-21 00:48:59 -04:00
id: middlemanager
2024-09-05 13:25:30 -04:00
title: "Middle Manager service"
sidebar_label: "Middle Manager"
2018-12-13 14:47:20 -05:00
---
2018-11-13 12:38:37 -05:00
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
2024-09-05 13:25:30 -04:00
The Middle Manager service is a worker service that executes submitted tasks. Middle Managers forward tasks to [Peons ](../design/peons.md ) that run in separate JVMs.
Druid uses separate JVMs for tasks to isolate resources and logs. Each Peon is capable of running only one task at a time, whereas a Middle Manager may have multiple Peons.
2015-05-05 17:07:32 -04:00
2023-12-08 14:40:24 -05:00
## Configuration
2018-09-04 15:54:41 -04:00
2024-09-05 13:25:30 -04:00
For Apache Druid Middle Manager service configuration, see [Middle Manager and Peons ](../configuration/index.md#middle-manager-and-peon ).
2018-09-04 15:54:41 -04:00
2024-09-05 13:25:30 -04:00
For basic tuning guidance for the Middle Manager service, see [Basic cluster tuning ](../operations/basic-cluster-tuning.md#middle-manager ).
2022-08-16 09:12:44 -04:00
2023-12-08 14:40:24 -05:00
## HTTP endpoints
2018-09-04 15:54:41 -04:00
2024-09-05 13:25:30 -04:00
For a list of API endpoints supported by the Middle Manager, see the [Service status API reference ](../api-reference/service-status-api.md#middle-manager ).
2018-09-04 15:54:41 -04:00
2023-12-08 14:40:24 -05:00
## Running
2015-05-05 17:07:32 -04:00
```
2018-08-30 12:56:26 -04:00
org.apache.druid.cli.Main server middleManager
2015-05-05 17:07:32 -04:00
```