forked from apache/hudi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[HUDI-8215] Support composite compaction strategy (apache#11963)
- Loading branch information
1 parent
1d1dc5d
commit e4cc7f0
Showing
8 changed files
with
148 additions
and
22 deletions.
There are no files selected for viewing
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
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
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
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
70 changes: 70 additions & 0 deletions
70
.../main/java/org/apache/hudi/table/action/compact/strategy/CompositeCompactionStrategy.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* 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.hudi.table.action.compact.strategy; | ||
|
||
import org.apache.hudi.avro.model.HoodieCompactionOperation; | ||
import org.apache.hudi.avro.model.HoodieCompactionPlan; | ||
import org.apache.hudi.config.HoodieWriteConfig; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* CompositeCompactionStrategy chains multiple compaction strategies together. | ||
* Multiple strategies perform like a pipeline with `and` condition instead of `or`. | ||
* The order of the strategies in the chain is important as the output of one strategy is passed as input to the next. | ||
*/ | ||
public class CompositeCompactionStrategy extends CompactionStrategy { | ||
|
||
private List<CompactionStrategy> strategies; | ||
|
||
public CompositeCompactionStrategy(List<CompactionStrategy> strategies) { | ||
this.strategies = strategies; | ||
} | ||
|
||
@Override | ||
public List<HoodieCompactionOperation> orderAndFilter(HoodieWriteConfig writeConfig, List<HoodieCompactionOperation> operations, List<HoodieCompactionPlan> pendingCompactionPlans) { | ||
List<HoodieCompactionOperation> finalOperations = operations; | ||
for (CompactionStrategy strategy : strategies) { | ||
finalOperations = strategy.orderAndFilter(writeConfig, finalOperations, pendingCompactionPlans); | ||
} | ||
return finalOperations; | ||
} | ||
|
||
@Override | ||
public List<String> filterPartitionPaths(HoodieWriteConfig writeConfig, List<String> allPartitionPaths) { | ||
List<String> finalPartitionPaths = allPartitionPaths; | ||
for (CompactionStrategy strategy : strategies) { | ||
finalPartitionPaths = strategy.filterPartitionPaths(writeConfig, finalPartitionPaths); | ||
} | ||
return finalPartitionPaths; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
StringBuilder builder = new StringBuilder(); | ||
builder.append("CompactionStrategyChain ["); | ||
for (CompactionStrategy strategy : strategies) { | ||
builder.append(strategy.getClass()); | ||
builder.append(" ===> "); | ||
} | ||
builder.append("]"); | ||
return builder.toString(); | ||
} | ||
} |
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
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
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