Coordinator service
The Coordinator service is primarily responsible for segment management and distribution. More specifically, the Coordinator service communicates to Historical services to load or drop segments based on configurations. The Coordinator is responsible for loading new segments, dropping outdated segments, ensuring that segments are "replicated" (that is, loaded on multiple different Historical nodes) proper (configured) number of times, and moving ("balancing") segments between Historical nodes to keep the latter evenly loaded.
The Coordinator runs its duties periodically and the time between each run is a configurable parameter. On each run, the Coordinator assesses the current state of the cluster before deciding on the appropriate actions to take. Similar to the Broker and Historical services, the Coordinator maintains a connection to a ZooKeeper cluster for current cluster information. The Coordinator also maintains a connection to a database containing information about "used" segments (that is, the segments that should be loaded in the cluster) and the loading rules.
Before any unassigned segments are serviced by Historical services, the Historical services for each tier are first sorted in terms of capacity, with least capacity servers having the highest priority. Unassigned segments are always assigned to the services with least capacity to maintain a level of balance between services. The Coordinator does not directly communicate with a Historical service when assigning it a new segment; instead the Coordinator creates some temporary information about the new segment under load queue path of the Historical service. Once this request is seen, the Historical service loads the segment and begins servicing it.
Configuration
For Apache Druid Coordinator service configuration, see Coordinator configuration.
For basic tuning guidance for the Coordinator service, see Basic cluster tuning.
HTTP endpoints
For a list of API endpoints supported by the Coordinator, see Service status API reference.
Running
org.apache.druid.cli.Main server coordinator
Rules
Segments can be automatically loaded and dropped from the cluster based on a set of rules. For more information on rules, see Rule Configuration.
Clean up overshadowed segments
On each run, the Coordinator compares the set of used segments in the database with the segments served by some Historical nodes in the cluster. The Coordinator sends requests to Historical nodes to unload unused segments or segments that are removed from the database.
Segments that are overshadowed (their versions are too old and their data has been replaced by newer segments) are marked as unused. During the next Coordinator's run, they will be unloaded from Historical nodes in the cluster.
Clean up non-overshadowed eternity tombstone segments
On each run, the Coordinator determines and cleans up unneeded eternity tombstone segments for each datasource. These segments must fit all the following criteria:
- It is a tombstone segment that starts at -INF or ends at INF (for example, a tombstone with an interval of
-146136543-09-08T08:23:32.096Z/2000-01-01
or2020-01-01/146140482-04-24T15:36:27.903Z
or-146136543-09-08T08:23:32.096Z/146140482-04-24T15:36:27.903Z
) - It does not overlap with any overshadowed segment
- It has 0 core partitions
Segment availability
If a Historical service restarts or becomes unavailable for any reason, the Coordinator notices that a service has gone missing and treats all segments served by that service as being dropped. The segments are then reassigned to other Historical services in the cluster. However, each segment that is dropped is not immediately forgotten. Instead, there is a transitional data structure that stores all dropped segments with an associated lifetime. The lifetime represents a period of time in which the Coordinator will not reassign a dropped segment. Hence, if a Historical service becomes unavailable and available again within a short period of time, the Historical service will start up and serve segments from its cache without any of those segments being reassigned across the cluster.
Balancing segments in a tier
Druid queries perform optimally when segments are distributed evenly across Historical services. An ideal distribution would ensure that all Historicals participate equally in the query load thus avoiding hot-spots in the system. To some extent, this can be achieved by keeping multiple replicas of a segment in a cluster. But in a tier with several Historicals (or a low replication factor), segment replication is not sufficient to attain balance. Thus, the Coordinator constantly monitors the set of segments present on each Historical in a tier and employs one of the following strategies to identify segments that may be moved from one Historical to another to retain balance.
cost
(default): For a given segment in a tier, this strategy picks the server with the minimum "cost" of placing that segment. The cost is a function of the data interval of the segment and the data intervals of all the segments already present on the candidate server. In essence, this strategy tries to avoid placing segments with adjacent or overlapping data intervals on the same server. This is based on the premise that adjacent-interval segments are more likely to be used together in a query and placing them on the same server may lead to skewed CPU usages of Historicals.diskNormalized
: A derivative of thecost
strategy that weights the cost of placing a segment on a server with the disk usage ratio of the server. There are known issues with this strategy and is not recommended for a production cluster.random
: Distributes segments randomly across servers. This is an experimental strategy and is not recommended for a production cluster.
All of the above strategies prioritize moving segments from the Historical with the least available disk space.
Automatic compaction
The Coordinator manages the automatic compaction system. Each run, the Coordinator compacts segments by merging small segments or splitting a large one. This is useful when the size of your segments is not optimized which may degrade query performance. See Segment size optimization for details.
The Coordinator first finds the segments to compact based on the segment search policy.
Once some segments are found, it issues a compaction task to compact those segments.
The maximum number of running compaction tasks is min(sum of worker capacity * slotRatio, maxSlots)
.
Note that even if min(sum of worker capacity * slotRatio, maxSlots) = 0
, at least one compaction task is always submitted
if the compaction is enabled for a dataSource.
See Automatic compaction configuration API and Automatic compaction configuration to enable and configure automatic compaction.
Compaction tasks might fail due to the following reasons:
- If the input segments of a compaction task are removed or overshadowed before it starts, that compaction task fails immediately.
- If a task of a higher priority acquires a time chunk lock for an interval overlapping with the interval of a compaction task, the compaction task fails.
Once a compaction task fails, the Coordinator simply checks the segments in the interval of the failed task again, and issues another compaction task in the next run.
Note that Compacting Segments Coordinator Duty is automatically enabled and run as part of the Indexing Service Duties group. However, Compacting Segments Coordinator Duty can be configured to run in isolation as a separate Coordinator duty group. This allows changing the period of Compacting Segments Coordinator Duty without impacting the period of other Indexing Service Duties. This can be done by setting the following properties. For more details, see custom pluggable Coordinator Duty.
druid.coordinator.dutyGroups=[<SOME_GROUP_NAME>]
druid.coordinator.<SOME_GROUP_NAME>.duties=["compactSegments"]
druid.coordinator.<SOME_GROUP_NAME>.period=<PERIOD_TO_RUN_COMPACTING_SEGMENTS_DUTY>
Segment search policy in automatic compaction
At every Coordinator run, this policy looks up time chunks from newest to oldest and checks whether the segments in those time chunks need compaction. A set of segments needs compaction if all conditions below are satisfied:
- Total size of segments in the time chunk is smaller than or equal to the configured
inputSegmentSizeBytes
. - Segments have never been compacted yet or compaction spec has been updated since the last compaction:
maxTotalRows
orindexSpec
.
Here are some details with an example. Suppose we have two dataSources (foo
, bar
) as seen below:
foo
foo_2017-11-01T00:00:00.000Z_2017-12-01T00:00:00.000Z_VERSION
foo_2017-11-01T00:00:00.000Z_2017-12-01T00:00:00.000Z_VERSION_1
foo_2017-09-01T00:00:00.000Z_2017-10-01T00:00:00.000Z_VERSION
bar
bar_2017-10-01T00:00:00.000Z_2017-11-01T00:00:00.000Z_VERSION
bar_2017-10-01T00:00:00.000Z_2017-11-01T00:00:00.000Z_VERSION_1
Assuming that each segment is 10 MB and haven't been compacted yet, this policy first returns two segments of
foo_2017-11-01T00:00:00.000Z_2017-12-01T00:00:00.000Z_VERSION
and foo_2017-11-01T00:00:00.000Z_2017-12-01T00:00:00.000Z_VERSION_1
to compact together because
2017-11-01T00:00:00.000Z/2017-12-01T00:00:00.000Z
is the most recent time chunk.
If the Coordinator has enough task slots for compaction, this policy will continue searching for the next segments and return
bar_2017-10-01T00:00:00.000Z_2017-11-01T00:00:00.000Z_VERSION
and bar_2017-10-01T00:00:00.000Z_2017-11-01T00:00:00.000Z_VERSION_1
.
Finally, foo_2017-09-01T00:00:00.000Z_2017-10-01T00:00:00.000Z_VERSION
will be picked up even though there is only one segment in the time chunk of 2017-09-01T00:00:00.000Z/2017-10-01T00:00:00.000Z
.
The search start point can be changed by setting skipOffsetFromLatest
.
If this is set, this policy will ignore the segments falling into the time chunk of (the end time of the most recent segment - skipOffsetFromLatest
).
This is to avoid conflicts between compaction tasks and realtime tasks.
Note that realtime tasks have a higher priority than compaction tasks by default. Realtime tasks will revoke the locks of compaction tasks if their intervals overlap, resulting in the termination of the compaction task.
For more information, see Avoid conflicts with ingestion.
This policy currently cannot handle the situation when there are a lot of small segments which have the same interval,
and their total size exceeds inputSegmentSizeBytes
.
If it finds such segments, it simply skips them.
FAQ
Do clients ever contact the Coordinator service?
The Coordinator is not involved in a query.
Historical services never directly contact the Coordinator service. The Coordinator tells the Historical services to load/drop data via ZooKeeper, but the Historical services are completely unaware of the Coordinator.
Brokers also never contact the Coordinator. Brokers base their understanding of the data topology on metadata exposed by the Historical services via ZooKeeper and are completely unaware of the Coordinator.
Does it matter if the Coordinator service starts up before or after other services?
No. If the Coordinator is not started up, no new segments will be loaded in the cluster and outdated segments will not be dropped. However, the Coordinator service can be started up at any time, and after a configurable delay, will start running Coordinator tasks.
This also means that if you have a working cluster and all of your Coordinators die, the cluster will continue to function, it just won’t experience any changes to its data topology.