Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
Reviewed
Description
This test started failing on TEZ after we merged PoS. The test checks if there is a "Combiner plan" among the vertices of Tez execution plan.
The last step of the query is pigServer.registerQuery("d = limit c 2 ; "); which is decisive in the case of Tez. It looks like if we check the plan for "d" there is no combiner part, but there is one if we check it for "c" - so without applying limit.
The reason this didn't come out before is because the alias supplied to checkCombinerUsed method was disregarded and alias "c" was checked always. This was recently fixed with the PoS merge. (See diff of TestCombiner here )
Attachments
Attachments
Issue Links
- relates to
-
PIG-5249 Group followed by Limit does not have combiner optimization in Tez
- Open