forked from apache/flink
-
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.
[FLINK-12883][runtime] Introduce PartitionReleaseStrategy
- Introduce interface PartitionReleaseStrategy. - Introduce RegionPartitionReleaseStrategy and NotReleasingPartitionReleaseStrategy implementations, which can be configured via a new config option. - Add unit tests for new classes. - Increase visibility of methods in TestingSchedulingTopology for unit tests outside of its package.
- Loading branch information
Showing
17 changed files
with
1,154 additions
and
38 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
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
56 changes: 56 additions & 0 deletions
56
.../executiongraph/failover/flip1/partitionrelease/NotReleasingPartitionReleaseStrategy.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,56 @@ | ||
/* | ||
* 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.flink.runtime.executiongraph.failover.flip1.partitionrelease; | ||
|
||
import org.apache.flink.runtime.executiongraph.failover.flip1.FailoverTopology; | ||
import org.apache.flink.runtime.jobgraph.IntermediateResultPartitionID; | ||
import org.apache.flink.runtime.scheduler.strategy.ExecutionVertexID; | ||
import org.apache.flink.runtime.scheduler.strategy.SchedulingTopology; | ||
|
||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
/** | ||
* Does not release intermediate result partitions during job execution. Relies on partitions being | ||
* released at the end of the job. | ||
*/ | ||
public class NotReleasingPartitionReleaseStrategy implements PartitionReleaseStrategy { | ||
|
||
@Override | ||
public List<IntermediateResultPartitionID> vertexFinished(final ExecutionVertexID finishedVertex) { | ||
return Collections.emptyList(); | ||
} | ||
|
||
@Override | ||
public void vertexUnfinished(final ExecutionVertexID executionVertexID) { | ||
} | ||
|
||
/** | ||
* Factory for {@link NotReleasingPartitionReleaseStrategy}. | ||
*/ | ||
public static class Factory implements PartitionReleaseStrategy.Factory { | ||
|
||
@Override | ||
public PartitionReleaseStrategy createInstance(final SchedulingTopology schedulingStrategy, final FailoverTopology failoverTopology) { | ||
return new NotReleasingPartitionReleaseStrategy(); | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.