[ https://issues.apache.org/jira/browse/PIG-1156?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12791745#action_12791745 ]
Hadoop QA commented on PIG-1156: -------------------------------- -1 overall. Here are the results of testing the latest attachment http://issues.apache.org/jira/secure/attachment/12428195/pig_batchAliases.patch against trunk revision 891419. +1 @author. The patch does not contain any @author tags. +1 tests included. The patch appears to include 7 new or modified tests. +1 javadoc. The javadoc tool did not generate any warning messages. +1 javac. The applied patch does not increase the total number of javac compiler warnings. +1 findbugs. The patch does not introduce any new Findbugs warnings. -1 release audit. The applied patch generated 406 release audit warnings (more than the trunk's current 402 warnings). +1 core tests. The patch passed core unit tests. +1 contrib tests. The patch passed contrib unit tests. Test results: http://hudson.zones.apache.org/hudson/job/Pig-Patch-h8.grid.sp2.yahoo.net/132/testReport/ Release audit warnings: http://hudson.zones.apache.org/hudson/job/Pig-Patch-h8.grid.sp2.yahoo.net/132/artifact/trunk/patchprocess/releaseAuditDiffWarnings.txt Findbugs warnings: http://hudson.zones.apache.org/hudson/job/Pig-Patch-h8.grid.sp2.yahoo.net/132/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html Console output: http://hudson.zones.apache.org/hudson/job/Pig-Patch-h8.grid.sp2.yahoo.net/132/console This message is automatically generated. > Add aliases to ExecJobs and PhysicalOperators > --------------------------------------------- > > Key: PIG-1156 > URL: https://issues.apache.org/jira/browse/PIG-1156 > Project: Pig > Issue Type: Improvement > Reporter: Dmitriy V. Ryaboy > Assignee: Dmitriy V. Ryaboy > Fix For: 0.7.0 > > Attachments: pig_batchAliases.patch > > > Currently, the way to use muti-query from Java is as follows: > 1. pigServer.setBatchOn(); > 2. register your queries with pigServer > 3. List<ExecJob> jobs = pigServer.executeBatch(); > 4. for (ExecJob job : jobs) { Iterator<Tuple> results = job.getResults(); } > This will cause all stores to get evaluated in a single batch. However, there > is no way to identify which of the ExecJobs corresponds to which store. We > should add aliases by which the stored relations are known to ExecJob in > order to allow the user to identify what the jobs correspond do. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.