2018-12-13 14:47:20 -05:00
---
layout: doc_page
2019-02-28 21:10:39 -05:00
title: "MiddleManager Process"
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.
-->
2019-02-28 21:10:39 -05:00
# MiddleManager Process
2015-05-05 17:07:32 -04:00
2018-09-04 15:54:41 -04:00
### Configuration
2019-04-19 18:52:26 -04:00
For Apache Druid (incubating) Middlemanager Process Configuration, see [Indexing Service Configuration ](../configuration/index.html#middlemanager-and-peons ).
2018-09-04 15:54:41 -04:00
### HTTP Endpoints
For a list of API endpoints supported by the MiddleManager, please see the [API reference ](../operations/api-reference.html#middlemanager ).
### Overview
2015-05-05 17:07:32 -04:00
2019-02-28 21:10:39 -05:00
The MiddleManager process is a worker process that executes submitted tasks. Middle Managers forward tasks to Peons that run in separate JVMs.
2019-01-30 22:41:07 -05:00
The reason we have separate JVMs for tasks is for resource and log isolation. Each [Peon ](../design/peons.html ) is capable of running only one task at a time, however, a MiddleManager may have multiple Peons.
2015-05-05 17:07:32 -04:00
2018-09-04 15:54:41 -04: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
```