You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by "Bill Graham (JIRA)" <ji...@apache.org> on 2012/08/09 00:51:21 UTC

[jira] [Created] (PIG-2864) LOAD with FILTER should read data without MapReduce

Bill Graham created PIG-2864:
--------------------------------

             Summary: LOAD with FILTER should read data without MapReduce
                 Key: PIG-2864
                 URL: https://issues.apache.org/jira/browse/PIG-2864
             Project: Pig
          Issue Type: Improvement
            Reporter: Bill Graham


A script like this should be able to read data directly from the LoadFunc and serve it without kicking off a MapReduce job:
{noformat}
a = LOAD 'data.txt';
b = LIMIT 10;
DUMP b;
{noformat}

Hive has similar functionality which is handy.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (PIG-2864) LOAD with FILTER should read data without MapReduce

Posted by "Bill Graham (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIG-2864?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bill Graham updated PIG-2864:
-----------------------------

    Description: 
A script like this should be able to read data directly from the LoadFunc and serve it without kicking off a MapReduce job:
{noformat}
a = LOAD 'data.txt';
b = LIMIT a 10;
DUMP b;
{noformat}

Hive has similar functionality which is handy.


  was:
A script like this should be able to read data directly from the LoadFunc and serve it without kicking off a MapReduce job:
{noformat}
a = LOAD 'data.txt';
b = LIMIT 10;
DUMP b;
{noformat}

Hive has similar functionality which is handy.


    
> LOAD with FILTER should read data without MapReduce
> ---------------------------------------------------
>
>                 Key: PIG-2864
>                 URL: https://issues.apache.org/jira/browse/PIG-2864
>             Project: Pig
>          Issue Type: Improvement
>            Reporter: Bill Graham
>
> A script like this should be able to read data directly from the LoadFunc and serve it without kicking off a MapReduce job:
> {noformat}
> a = LOAD 'data.txt';
> b = LIMIT a 10;
> DUMP b;
> {noformat}
> Hive has similar functionality which is handy.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira