[
https://issues.apache.org/jira/browse/PIG-1894?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13012767#comment-13012767
]
Richard Ding commented on PIG-1894:
-----------------------------------
Test-patch result:
{code}
[exec] -1 overall.
[exec]
[exec] +1 @author. The patch does not contain any @author tags.
[exec]
[exec] +1 tests included. The patch appears to include 3 new or
modified tests.
[exec]
[exec] +1 javadoc. The javadoc tool did not generate any warning
messages.
[exec]
[exec] +1 javac. The applied patch does not increase the total number
of javac compiler warnings.
[exec]
[exec] +1 findbugs. The patch does not introduce any new Findbugs
warnings.
[exec]
[exec] -1 release audit. The applied patch generated 553 release
audit warnings (more than the trunk's current 552 warnings).
{code}
The release audit warning is html related.
> Worng stats shown when there are multiple stores but same file names
> --------------------------------------------------------------------
>
> Key: PIG-1894
> URL: https://issues.apache.org/jira/browse/PIG-1894
> Project: Pig
> Issue Type: Bug
> Affects Versions: 0.8.0, 0.9.0
> Reporter: Vivek Padmanabhan
> Assignee: Richard Ding
> Fix For: 0.9.0
>
> Attachments: PIG-1894.patch
>
>
> Pig 0.8/0.9 shows wrong stats for store counters when I have multiple store
> but of the same name.
> To reproduce the issue please use the below script :
> {code}
> A = load 'sampledata1' as (f1:chararray,f2:chararray,f3:int);
> B = filter A by f3==1;
> C = filter A by f3==2;
> D = filter A by f3==3;
> store B into '/folder/B/out.gz';
> store C into '/folder/C/out.gz';
> store D into '/folder/D/out.gz';
> {code}
> Input
> {code}
> aaa a 1
> aaa b 1
> bbb a 2
> bbb b 2
> ccc a 3
> ccc b 3
> {code}
> For this script Pig shows
> Output(s):
> Successfully stored 6 records (32 bytes) in: "/folder/B/out.gz"
> Successfully stored 6 records (32 bytes) in: "/folder/C/out.gz"
> Successfully stored 6 records (32 bytes) in: "/folder/D/out.gz"
> Counters:
> Total records written : 18
> Total bytes written : 96
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira