-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cache segment metadata on the Overlord to speed up segment allocation and other task actions #17653
Open
kfaraz
wants to merge
7
commits into
apache:master
Choose a base branch
from
kfaraz:cache_segments_on_overlord
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server/src/main/java/org/apache/druid/metadata/segment/cache/SqlSegmentsMetadataCache.java
Fixed
Show fixed
Hide fixed
server/src/main/java/org/apache/druid/metadata/segment/cache/SegmentsMetadataCache.java
Fixed
Show fixed
Hide fixed
server/src/main/java/org/apache/druid/metadata/segment/cache/DatasourceSegmentCache.java
Fixed
Show fixed
Hide fixed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
The Overlord performs several metadata operations on the tables
druid_segments
anddruid_pendingSegments
,such as segment commit, allocation, upgrade and mark used / unused.
Segment allocation, in particular, involves several reads/writes to the metadata store and can often become a bottleneck,
causing ingestion to slow down. This effect is particularly pronounced when streaming ingestion is enabled for
multiple datasources or if there is a lot of late arriving data.
This patch adds an in-memory segment cache to the Overlord to speed up all segment metadata operations.
Assumptions
Design
Summary
druid.manager.segments.useCache
to enable cacheSegment metadata transaction with cache enabled
Lifecycle of cache
druid.manager.segments.useCache=true
on the Overlordstart()
cachedruid.manager.segments.pollDuration
to do the following:stop()
cacheContents of cache
The cache maintains the following fields for every datasource.
Map<String, DataSegmentPlus> idToUsedSegment
Set<String> unusedSegmentIds
Map<Interval, Map<String, Integer>> intervalVersionToHighestUnusedPartitionNumber
Map<Interval, Map<String, PendingSegmentRecord>> intervalToPendingSegments
Code changes
SegmentsMetadataManagerConfig.useCache
DatasourceSegmentMetadataReader
DatasourceSegmentMetadataWriter
HeapMemorySegmentMetadataCache
DatasourceSegmentCache
SegmentMetadataTransaction
SqlSegmentMetadataTransaction
CachedSegmentMetadataTransaction
SqlSegmentMetadataTransactionFactory
IndexerSQLMetadataStorageCoordinator
SqlSegmentsMetadataQuery
SqlSegmentMetadataTransaction
Testing
IndexerSQLMetadataStorageCoordinatorTest
to run both with and without cacheDatasourceSegmentCacheTest
Pending items
Release note
Add Overlord runtime property
druid.manager.segments.useCache
(default valuefalse
).Set this to
true
to turn on segment metadata caching on the Overlord. This allows segment metadata operationssuch as reads and segment allocation to be sped up significantly.
This PR has: