[jira] Updated: (PIG-1194) ERROR 2055: Received Error while processing the map plan

2010-02-17 Thread Richard Ding (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Richard Ding updated PIG-1194:
--

Resolution: Fixed
Status: Resolved  (was: Patch Available)

The second patch is committed.

 ERROR 2055: Received Error while processing the map plan
 

 Key: PIG-1194
 URL: https://issues.apache.org/jira/browse/PIG-1194
 Project: Pig
  Issue Type: Bug
  Components: impl
Affects Versions: 0.5.0, 0.6.0
Reporter: Viraj Bhat
Assignee: Richard Ding
 Fix For: 0.7.0

 Attachments: inputdata.txt, PIG-1194.patch, PIG-1294_1.patch


 I have a simple Pig script which takes 3 columns out of which one is null. 
 {code}
 input = load 'inputdata.txt' using PigStorage() as (col1, col2, col3);
 a = GROUP input BY (((double) col3)/((double) col2)  .001 OR col1  11 ? 
 col1 : -1);
 b = FOREACH a GENERATE group as col1, SUM(input.col2) as col2, 
 SUM(input.col3) as  col3;
 store b into 'finalresult';
 {code}
 When I run this script I get the following error:
 ERROR 2055: Received Error while processing the map plan.
 org.apache.pig.backend.executionengine.ExecException: ERROR 2055: Received 
 Error while processing the map plan.
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.runPipeline(PigMapBase.java:277)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.map(PigMapBase.java:240)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapReduce$Map.map(PigMapReduce.java:93)
 at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:50)
 at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:358)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 
 A more useful error message for the purpose of debugging would be helpful.
 Viraj

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-1194) ERROR 2055: Received Error while processing the map plan

2010-02-10 Thread Richard Ding (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Richard Ding updated PIG-1194:
--

Attachment: (was: PIG-1194.patch)

 ERROR 2055: Received Error while processing the map plan
 

 Key: PIG-1194
 URL: https://issues.apache.org/jira/browse/PIG-1194
 Project: Pig
  Issue Type: Bug
  Components: impl
Affects Versions: 0.5.0, 0.6.0
Reporter: Viraj Bhat
Assignee: Richard Ding
 Fix For: 0.7.0

 Attachments: inputdata.txt, PIG-1194.patch


 I have a simple Pig script which takes 3 columns out of which one is null. 
 {code}
 input = load 'inputdata.txt' using PigStorage() as (col1, col2, col3);
 a = GROUP input BY (((double) col3)/((double) col2)  .001 OR col1  11 ? 
 col1 : -1);
 b = FOREACH a GENERATE group as col1, SUM(input.col2) as col2, 
 SUM(input.col3) as  col3;
 store b into 'finalresult';
 {code}
 When I run this script I get the following error:
 ERROR 2055: Received Error while processing the map plan.
 org.apache.pig.backend.executionengine.ExecException: ERROR 2055: Received 
 Error while processing the map plan.
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.runPipeline(PigMapBase.java:277)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.map(PigMapBase.java:240)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapReduce$Map.map(PigMapReduce.java:93)
 at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:50)
 at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:358)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 
 A more useful error message for the purpose of debugging would be helpful.
 Viraj

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-1194) ERROR 2055: Received Error while processing the map plan

2010-02-10 Thread Richard Ding (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Richard Ding updated PIG-1194:
--

Attachment: PIG-1294_1.patch

The new patch deals with the case where combiner is invoked.

 ERROR 2055: Received Error while processing the map plan
 

 Key: PIG-1194
 URL: https://issues.apache.org/jira/browse/PIG-1194
 Project: Pig
  Issue Type: Bug
  Components: impl
Affects Versions: 0.5.0, 0.6.0
Reporter: Viraj Bhat
Assignee: Richard Ding
 Fix For: 0.7.0

 Attachments: inputdata.txt, PIG-1194.patch, PIG-1294_1.patch


 I have a simple Pig script which takes 3 columns out of which one is null. 
 {code}
 input = load 'inputdata.txt' using PigStorage() as (col1, col2, col3);
 a = GROUP input BY (((double) col3)/((double) col2)  .001 OR col1  11 ? 
 col1 : -1);
 b = FOREACH a GENERATE group as col1, SUM(input.col2) as col2, 
 SUM(input.col3) as  col3;
 store b into 'finalresult';
 {code}
 When I run this script I get the following error:
 ERROR 2055: Received Error while processing the map plan.
 org.apache.pig.backend.executionengine.ExecException: ERROR 2055: Received 
 Error while processing the map plan.
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.runPipeline(PigMapBase.java:277)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.map(PigMapBase.java:240)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapReduce$Map.map(PigMapReduce.java:93)
 at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:50)
 at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:358)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 
 A more useful error message for the purpose of debugging would be helpful.
 Viraj

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-1194) ERROR 2055: Received Error while processing the map plan

2010-02-10 Thread Richard Ding (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Richard Ding updated PIG-1194:
--

Status: Patch Available  (was: Reopened)

 ERROR 2055: Received Error while processing the map plan
 

 Key: PIG-1194
 URL: https://issues.apache.org/jira/browse/PIG-1194
 Project: Pig
  Issue Type: Bug
  Components: impl
Affects Versions: 0.5.0, 0.6.0
Reporter: Viraj Bhat
Assignee: Richard Ding
 Fix For: 0.7.0

 Attachments: inputdata.txt, PIG-1194.patch, PIG-1294_1.patch


 I have a simple Pig script which takes 3 columns out of which one is null. 
 {code}
 input = load 'inputdata.txt' using PigStorage() as (col1, col2, col3);
 a = GROUP input BY (((double) col3)/((double) col2)  .001 OR col1  11 ? 
 col1 : -1);
 b = FOREACH a GENERATE group as col1, SUM(input.col2) as col2, 
 SUM(input.col3) as  col3;
 store b into 'finalresult';
 {code}
 When I run this script I get the following error:
 ERROR 2055: Received Error while processing the map plan.
 org.apache.pig.backend.executionengine.ExecException: ERROR 2055: Received 
 Error while processing the map plan.
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.runPipeline(PigMapBase.java:277)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.map(PigMapBase.java:240)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapReduce$Map.map(PigMapReduce.java:93)
 at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:50)
 at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:358)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 
 A more useful error message for the purpose of debugging would be helpful.
 Viraj

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-1194) ERROR 2055: Received Error while processing the map plan

2010-01-28 Thread Ashutosh Chauhan (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ashutosh Chauhan updated PIG-1194:
--


Patch Committed. Thanks, Richard !

 ERROR 2055: Received Error while processing the map plan
 

 Key: PIG-1194
 URL: https://issues.apache.org/jira/browse/PIG-1194
 Project: Pig
  Issue Type: Bug
  Components: impl
Affects Versions: 0.5.0, 0.6.0
Reporter: Viraj Bhat
Assignee: Richard Ding
 Fix For: 0.7.0

 Attachments: inputdata.txt, PIG-1194.patch, PIG-1194.patch


 I have a simple Pig script which takes 3 columns out of which one is null. 
 {code}
 input = load 'inputdata.txt' using PigStorage() as (col1, col2, col3);
 a = GROUP input BY (((double) col3)/((double) col2)  .001 OR col1  11 ? 
 col1 : -1);
 b = FOREACH a GENERATE group as col1, SUM(input.col2) as col2, 
 SUM(input.col3) as  col3;
 store b into 'finalresult';
 {code}
 When I run this script I get the following error:
 ERROR 2055: Received Error while processing the map plan.
 org.apache.pig.backend.executionengine.ExecException: ERROR 2055: Received 
 Error while processing the map plan.
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.runPipeline(PigMapBase.java:277)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.map(PigMapBase.java:240)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapReduce$Map.map(PigMapReduce.java:93)
 at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:50)
 at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:358)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 
 A more useful error message for the purpose of debugging would be helpful.
 Viraj

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-1194) ERROR 2055: Received Error while processing the map plan

2010-01-22 Thread Richard Ding (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Richard Ding updated PIG-1194:
--

Status: Open  (was: Patch Available)

 ERROR 2055: Received Error while processing the map plan
 

 Key: PIG-1194
 URL: https://issues.apache.org/jira/browse/PIG-1194
 Project: Pig
  Issue Type: Bug
  Components: impl
Affects Versions: 0.5.0, 0.6.0
Reporter: Viraj Bhat
Assignee: Richard Ding
 Fix For: 0.7.0

 Attachments: inputdata.txt, PIG-1194.patch, PIG-1194.patch


 I have a simple Pig script which takes 3 columns out of which one is null. 
 {code}
 input = load 'inputdata.txt' using PigStorage() as (col1, col2, col3);
 a = GROUP input BY (((double) col3)/((double) col2)  .001 OR col1  11 ? 
 col1 : -1);
 b = FOREACH a GENERATE group as col1, SUM(input.col2) as col2, 
 SUM(input.col3) as  col3;
 store b into 'finalresult';
 {code}
 When I run this script I get the following error:
 ERROR 2055: Received Error while processing the map plan.
 org.apache.pig.backend.executionengine.ExecException: ERROR 2055: Received 
 Error while processing the map plan.
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.runPipeline(PigMapBase.java:277)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.map(PigMapBase.java:240)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapReduce$Map.map(PigMapReduce.java:93)
 at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:50)
 at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:358)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 
 A more useful error message for the purpose of debugging would be helpful.
 Viraj

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-1194) ERROR 2055: Received Error while processing the map plan

2010-01-22 Thread Richard Ding (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Richard Ding updated PIG-1194:
--

Status: Open  (was: Patch Available)

 ERROR 2055: Received Error while processing the map plan
 

 Key: PIG-1194
 URL: https://issues.apache.org/jira/browse/PIG-1194
 Project: Pig
  Issue Type: Bug
  Components: impl
Affects Versions: 0.5.0, 0.6.0
Reporter: Viraj Bhat
Assignee: Richard Ding
 Fix For: 0.7.0

 Attachments: inputdata.txt, PIG-1194.patch, PIG-1194.patch


 I have a simple Pig script which takes 3 columns out of which one is null. 
 {code}
 input = load 'inputdata.txt' using PigStorage() as (col1, col2, col3);
 a = GROUP input BY (((double) col3)/((double) col2)  .001 OR col1  11 ? 
 col1 : -1);
 b = FOREACH a GENERATE group as col1, SUM(input.col2) as col2, 
 SUM(input.col3) as  col3;
 store b into 'finalresult';
 {code}
 When I run this script I get the following error:
 ERROR 2055: Received Error while processing the map plan.
 org.apache.pig.backend.executionengine.ExecException: ERROR 2055: Received 
 Error while processing the map plan.
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.runPipeline(PigMapBase.java:277)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.map(PigMapBase.java:240)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapReduce$Map.map(PigMapReduce.java:93)
 at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:50)
 at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:358)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 
 A more useful error message for the purpose of debugging would be helpful.
 Viraj

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-1194) ERROR 2055: Received Error while processing the map plan

2010-01-22 Thread Richard Ding (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Richard Ding updated PIG-1194:
--

Status: Patch Available  (was: Open)

 ERROR 2055: Received Error while processing the map plan
 

 Key: PIG-1194
 URL: https://issues.apache.org/jira/browse/PIG-1194
 Project: Pig
  Issue Type: Bug
  Components: impl
Affects Versions: 0.5.0, 0.6.0
Reporter: Viraj Bhat
Assignee: Richard Ding
 Fix For: 0.7.0

 Attachments: inputdata.txt, PIG-1194.patch, PIG-1194.patch


 I have a simple Pig script which takes 3 columns out of which one is null. 
 {code}
 input = load 'inputdata.txt' using PigStorage() as (col1, col2, col3);
 a = GROUP input BY (((double) col3)/((double) col2)  .001 OR col1  11 ? 
 col1 : -1);
 b = FOREACH a GENERATE group as col1, SUM(input.col2) as col2, 
 SUM(input.col3) as  col3;
 store b into 'finalresult';
 {code}
 When I run this script I get the following error:
 ERROR 2055: Received Error while processing the map plan.
 org.apache.pig.backend.executionengine.ExecException: ERROR 2055: Received 
 Error while processing the map plan.
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.runPipeline(PigMapBase.java:277)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.map(PigMapBase.java:240)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapReduce$Map.map(PigMapReduce.java:93)
 at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:50)
 at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:358)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 
 A more useful error message for the purpose of debugging would be helpful.
 Viraj

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-1194) ERROR 2055: Received Error while processing the map plan

2010-01-20 Thread Richard Ding (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Richard Ding updated PIG-1194:
--

Status: Patch Available  (was: Open)

 ERROR 2055: Received Error while processing the map plan
 

 Key: PIG-1194
 URL: https://issues.apache.org/jira/browse/PIG-1194
 Project: Pig
  Issue Type: Bug
  Components: impl
Affects Versions: 0.5.0, 0.6.0
Reporter: Viraj Bhat
Assignee: Richard Ding
 Fix For: 0.7.0

 Attachments: inputdata.txt, PIG-1194.patch


 I have a simple Pig script which takes 3 columns out of which one is null. 
 {code}
 input = load 'inputdata.txt' using PigStorage() as (col1, col2, col3);
 a = GROUP input BY (((double) col3)/((double) col2)  .001 OR col1  11 ? 
 col1 : -1);
 b = FOREACH a GENERATE group as col1, SUM(input.col2) as col2, 
 SUM(input.col3) as  col3;
 store b into 'finalresult';
 {code}
 When I run this script I get the following error:
 ERROR 2055: Received Error while processing the map plan.
 org.apache.pig.backend.executionengine.ExecException: ERROR 2055: Received 
 Error while processing the map plan.
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.runPipeline(PigMapBase.java:277)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.map(PigMapBase.java:240)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapReduce$Map.map(PigMapReduce.java:93)
 at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:50)
 at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:358)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 
 A more useful error message for the purpose of debugging would be helpful.
 Viraj

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-1194) ERROR 2055: Received Error while processing the map plan

2010-01-15 Thread Viraj Bhat (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Viraj Bhat updated PIG-1194:


Attachment: inputdata.txt

Testdata to run with this script

 ERROR 2055: Received Error while processing the map plan
 

 Key: PIG-1194
 URL: https://issues.apache.org/jira/browse/PIG-1194
 Project: Pig
  Issue Type: Bug
  Components: impl
Affects Versions: 0.5.0, 0.6.0
Reporter: Viraj Bhat
Assignee: Richard Ding
 Fix For: 0.6.0

 Attachments: inputdata.txt


 I have a simple Pig script which takes 3 columns out of which one is null. 
 {code}
 input = load 'inputdata.txt' using PigStorage() as (col1, col2, col3);
 a = GROUP input BY (((double) col3)/((double) col2)  .001 OR col1  11 ? 
 col1 : -1);
 b = FOREACH a GENERATE group as col1, SUM(input.col2) as col2, 
 SUM(input.col3) as  col3;
 store b into 'finalresult';
 {code}
 When I run this script I get the following error:
 ERROR 2055: Received Error while processing the map plan.
 org.apache.pig.backend.executionengine.ExecException: ERROR 2055: Received 
 Error while processing the map plan.
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.runPipeline(PigMapBase.java:277)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.map(PigMapBase.java:240)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapReduce$Map.map(PigMapReduce.java:93)
 at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:50)
 at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:358)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 
 A more useful error message for the purpose of debugging would be helpful.
 Viraj

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (PIG-1194) ERROR 2055: Received Error while processing the map plan

2010-01-15 Thread Olga Natkovich (JIRA)

 [ 
https://issues.apache.org/jira/browse/PIG-1194?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Olga Natkovich updated PIG-1194:


Fix Version/s: (was: 0.6.0)
   0.7.0

 ERROR 2055: Received Error while processing the map plan
 

 Key: PIG-1194
 URL: https://issues.apache.org/jira/browse/PIG-1194
 Project: Pig
  Issue Type: Bug
  Components: impl
Affects Versions: 0.5.0, 0.6.0
Reporter: Viraj Bhat
Assignee: Richard Ding
 Fix For: 0.7.0

 Attachments: inputdata.txt


 I have a simple Pig script which takes 3 columns out of which one is null. 
 {code}
 input = load 'inputdata.txt' using PigStorage() as (col1, col2, col3);
 a = GROUP input BY (((double) col3)/((double) col2)  .001 OR col1  11 ? 
 col1 : -1);
 b = FOREACH a GENERATE group as col1, SUM(input.col2) as col2, 
 SUM(input.col3) as  col3;
 store b into 'finalresult';
 {code}
 When I run this script I get the following error:
 ERROR 2055: Received Error while processing the map plan.
 org.apache.pig.backend.executionengine.ExecException: ERROR 2055: Received 
 Error while processing the map plan.
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.runPipeline(PigMapBase.java:277)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapBase.map(PigMapBase.java:240)
 at 
 org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapReduce$Map.map(PigMapReduce.java:93)
 at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:50)
 at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:358)
 at org.apache.hadoop.mapred.MapTask.run(MapTask.java:307)
 
 A more useful error message for the purpose of debugging would be helpful.
 Viraj

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.