-
Notifications
You must be signed in to change notification settings - Fork 588
HDDS-12819. Auto-compact tables which can tend to be large in size at intervals #8260
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
fbfdb99
Add background service for compaction
Tejaskriya 8a953f2
Auto-compact in background at intervals
Tejaskriya 939cee1
validate tables, add exclusiveManualCompaction option, add tests
Tejaskriya fc72f4e
test fix
Tejaskriya 2699e77
Disable compaction service by default
Tejaskriya File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
184 changes: 184 additions & 0 deletions
184
...one/ozone-manager/src/main/java/org/apache/hadoop/ozone/om/service/CompactionService.java
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,184 @@ | ||
| /* | ||
| * 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. | ||
| */ | ||
|
|
||
| package org.apache.hadoop.ozone.om.service; | ||
|
|
||
| import com.google.common.annotations.VisibleForTesting; | ||
| import java.io.IOException; | ||
| import java.util.ArrayList; | ||
| import java.util.Collections; | ||
| import java.util.HashSet; | ||
| import java.util.List; | ||
| import java.util.Set; | ||
| import java.util.concurrent.TimeUnit; | ||
| import java.util.concurrent.atomic.AtomicBoolean; | ||
| import java.util.concurrent.atomic.AtomicLong; | ||
| import org.apache.hadoop.hdds.utils.BackgroundService; | ||
| import org.apache.hadoop.hdds.utils.BackgroundTask; | ||
| import org.apache.hadoop.hdds.utils.BackgroundTaskQueue; | ||
| import org.apache.hadoop.hdds.utils.BackgroundTaskResult; | ||
| import org.apache.hadoop.hdds.utils.db.RDBStore; | ||
| import org.apache.hadoop.hdds.utils.db.RocksDatabase; | ||
| import org.apache.hadoop.hdds.utils.db.managed.ManagedCompactRangeOptions; | ||
| import org.apache.hadoop.ozone.om.OMMetadataManager; | ||
| import org.apache.hadoop.ozone.om.OzoneManager; | ||
| import org.apache.hadoop.util.Time; | ||
| import org.slf4j.Logger; | ||
| import org.slf4j.LoggerFactory; | ||
|
|
||
| /** | ||
| * This is the background service to compact OM rocksdb tables. | ||
| */ | ||
| public class CompactionService extends BackgroundService { | ||
| private static final Logger LOG = | ||
| LoggerFactory.getLogger(CompactionService.class); | ||
|
|
||
| // Use only a single thread for Compaction. | ||
| private static final int COMPACTOR_THREAD_POOL_SIZE = 1; | ||
|
|
||
| private final OzoneManager ozoneManager; | ||
| private final OMMetadataManager omMetadataManager; | ||
| private final AtomicLong numCompactions; | ||
| private final AtomicBoolean suspended; | ||
| // list of tables that can be compacted | ||
| private final List<String> compactableTables; | ||
|
|
||
| public CompactionService(OzoneManager ozoneManager, TimeUnit unit, long interval, long timeout, | ||
| List<String> tables) { | ||
| super("CompactionService", interval, unit, | ||
| COMPACTOR_THREAD_POOL_SIZE, timeout, | ||
| ozoneManager.getThreadNamePrefix()); | ||
| this.ozoneManager = ozoneManager; | ||
| this.omMetadataManager = this.ozoneManager.getMetadataManager(); | ||
|
|
||
| this.numCompactions = new AtomicLong(0); | ||
| this.suspended = new AtomicBoolean(false); | ||
| this.compactableTables = validateTables(tables); | ||
| } | ||
|
|
||
| private List<String> validateTables(List<String> tables) { | ||
| if (tables == null || tables.isEmpty()) { | ||
| return Collections.emptyList(); | ||
| } | ||
| List<String> validTables = new ArrayList<>(); | ||
| Set<String> allTableNames = new HashSet<>(omMetadataManager.listTableNames()); | ||
| for (String table : tables) { | ||
| if (allTableNames.contains(table)) { | ||
| validTables.add(table); | ||
| } else { | ||
| LOG.warn("CompactionService: Table \"{}\" not found in OM metadata. Skipping this table.", table); | ||
| } | ||
| } | ||
| if (validTables.isEmpty()) { | ||
| LOG.error("CompactionService: No valid compaction tables found. Failing initialization."); | ||
| throw new IllegalArgumentException("CompactionService: None of the provided tables are valid."); | ||
| } | ||
| return Collections.unmodifiableList(validTables); | ||
| } | ||
|
|
||
| /** | ||
| * Suspend the service (for testing). | ||
| */ | ||
| @VisibleForTesting | ||
| public void suspend() { | ||
| suspended.set(true); | ||
| } | ||
|
|
||
| /** | ||
| * Resume the service if suspended (for testing). | ||
| */ | ||
| @VisibleForTesting | ||
| public void resume() { | ||
| suspended.set(false); | ||
| } | ||
|
|
||
| @VisibleForTesting | ||
| public List<String> getCompactableTables() { | ||
| return compactableTables; | ||
| } | ||
|
|
||
| /** | ||
| * Returns the number of manual compactions performed. | ||
| * | ||
| * @return long count. | ||
| */ | ||
| @VisibleForTesting | ||
| public long getNumCompactions() { | ||
| return numCompactions.get(); | ||
| } | ||
|
|
||
| @Override | ||
| public synchronized BackgroundTaskQueue getTasks() { | ||
| BackgroundTaskQueue queue = new BackgroundTaskQueue(); | ||
| for (String tableName : compactableTables) { | ||
| queue.add(new CompactTask(tableName)); | ||
| } | ||
| return queue; | ||
| } | ||
|
|
||
| private boolean shouldRun() { | ||
| return !suspended.get(); | ||
| } | ||
|
|
||
| protected void compactFully(String tableName) throws IOException { | ||
| long startTime = Time.monotonicNow(); | ||
| LOG.info("Compacting column family: {}", tableName); | ||
| try (ManagedCompactRangeOptions options = new ManagedCompactRangeOptions()) { | ||
| options.setBottommostLevelCompaction(ManagedCompactRangeOptions.BottommostLevelCompaction.kForce); | ||
| options.setExclusiveManualCompaction(true); | ||
| RocksDatabase rocksDatabase = ((RDBStore) omMetadataManager.getStore()).getDb(); | ||
|
|
||
| try { | ||
| // Find CF Handler | ||
| RocksDatabase.ColumnFamily columnFamily = rocksDatabase.getColumnFamily(tableName); | ||
| rocksDatabase.compactRange(columnFamily, null, null, options); | ||
jojochuang marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| LOG.info("Compaction of column family: {} completed in {} ms", | ||
| tableName, Time.monotonicNow() - startTime); | ||
| } catch (NullPointerException ex) { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should check null instead of catching BTW, the commit message somehow used HDDS-12518 instead of HDDS-12819. |
||
| LOG.error("Unable to trigger compaction for \"{}\". Column family not found ", tableName); | ||
| throw new IOException("Column family \"" + tableName + "\" not found."); | ||
| } | ||
| } | ||
| } | ||
|
|
||
| private class CompactTask implements BackgroundTask { | ||
| private final String tableName; | ||
|
|
||
| CompactTask(String tableName) { | ||
| this.tableName = tableName; | ||
| } | ||
|
|
||
| @Override | ||
| public int getPriority() { | ||
| return 0; | ||
| } | ||
|
|
||
| @Override | ||
| public BackgroundTaskResult call() throws Exception { | ||
| // trigger full compaction for the specified table. | ||
| if (!shouldRun()) { | ||
| return BackgroundTaskResult.EmptyTaskResult.newResult(); | ||
| } | ||
| LOG.debug("Running CompactTask"); | ||
|
|
||
| compactFully(tableName); | ||
| numCompactions.incrementAndGet(); | ||
| return () -> 1; | ||
| } | ||
| } | ||
|
|
||
| } | ||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Tejaskriya
Noticed that there is a typo here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Although it is consistent with what the config is named in ozone-default.xml, I will correct it in a followup jira. Thanks for catching this!
@jojochuang I am not sure if someone using this version of the patch would face any issues. Do you happen to know if not following the config naming convention would cause any breakage?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HDDS-13525 fixes this