Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
The following CompilerException is raised by
```
eu.stratosphere.compiler.CompilerException:
No plan meeting the requirements could be created @ GroupReduce (eu.stratosphere.example.java.clustering.Prog$IdentityReduce) (1:null).
Most likely reason: Too restrictive plan hints.
```
this program.
```java
public class Prog {
@SuppressWarnings("unchecked")
public static void main(String[] args) throws Exception
public static final class IdentityMap extends
FlatMapFunction<Tuple1<Integer>, Tuple1<Integer>> {
@Override
public void flatMap(Tuple1<Integer> value,
Collector<Tuple1<Integer>> out)
}
public static final class IdentityReduce extends
GroupReduceFunction<Tuple1<Integer>, Tuple1<Integer>> {
@Override
public void reduce(Iterator<Tuple1<Integer>> values,
Collector<Tuple1<Integer>> out) {
while (values.hasNext())
}
}
}
```
---------------- Imported from GitHub ----------------
Url: https://github.com/stratosphere/stratosphere/issues/880
Created by: fhueske
Labels: bug, optimizer,
Milestone: Release 0.5.1
Created at: Wed May 28 15:44:15 CEST 2014
State: open