This repository has been archived by the owner on May 17, 2021. It is now read-only.
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-1264] [compiler] Properly forward custom partitioners to the r…
…untime
- Loading branch information
1 parent
b3e5ed0
commit d0f2db0
Showing
2 changed files
with
82 additions
and
7 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
73 changes: 73 additions & 0 deletions
73
flink-tests/src/test/java/org/apache/flink/test/misc/CustomPartitioningITCase.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,73 @@ | ||
/* | ||
* 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.test.misc; | ||
|
||
import org.apache.flink.api.common.functions.Partitioner; | ||
import org.apache.flink.api.common.functions.RichMapFunction; | ||
import org.apache.flink.api.java.ExecutionEnvironment; | ||
import org.apache.flink.api.java.functions.KeySelector; | ||
import org.apache.flink.api.java.io.DiscardingOutputFormat; | ||
import org.apache.flink.test.util.JavaProgramTestBase; | ||
import org.junit.Assert; | ||
|
||
@SuppressWarnings("serial") | ||
public class CustomPartitioningITCase extends JavaProgramTestBase { | ||
|
||
@Override | ||
protected void testProgram() throws Exception { | ||
ExecutionEnvironment env = ExecutionEnvironment.getExecutionEnvironment(); | ||
|
||
if (!isCollectionExecution()) { | ||
Assert.assertTrue(env.getDegreeOfParallelism() > 1); | ||
} | ||
|
||
env.generateSequence(1, 1000) | ||
.partitionCustom(new AllZeroPartitioner(), new IdKeySelector<Long>()) | ||
.map(new FailExceptInPartitionZeroMapper()) | ||
.output(new DiscardingOutputFormat<Long>()); | ||
|
||
env.execute(); | ||
} | ||
|
||
public static class FailExceptInPartitionZeroMapper extends RichMapFunction<Long, Long> { | ||
|
||
@Override | ||
public Long map(Long value) throws Exception { | ||
if (getRuntimeContext().getIndexOfThisSubtask() == 0) { | ||
return value; | ||
} else { | ||
throw new Exception("Received data in a partition other than partition 0"); | ||
} | ||
} | ||
} | ||
|
||
public static class AllZeroPartitioner implements Partitioner<Long> { | ||
@Override | ||
public int partition(Long key, int numPartitions) { | ||
return 0; | ||
} | ||
} | ||
|
||
public static class IdKeySelector<T> implements KeySelector<T, T> { | ||
@Override | ||
public T getKey(T value) { | ||
return value; | ||
} | ||
} | ||
} |