Uploaded image for project: 'Pig'
  1. Pig
  2. PIG-506

Does pig need a NATIVE keyword?

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • 0.8.0
    • impl
    • Reviewed

    Description

      Assume a user had a job that broke easily into three pieces. Further assume that pieces one and three were easily expressible in pig, but that piece two needed to be written in map reduce for whatever reason (performance, something that pig could not easily express, legacy job that was too important to change, etc.). Today the user would either have to use map reduce for the entire job or manually handle the stitching together of pig and map reduce jobs. What if instead pig provided a NATIVE keyword that would allow the script to pass off the data stream to the underlying system (in this case map reduce). The semantics of NATIVE would vary by underlying system. In the map reduce case, we would assume that this indicated a collection of one or more fully contained map reduce jobs, so that pig would store the data, invoke the map reduce jobs, and then read the resulting data to continue. It might look something like this:

      A = load 'myfile';
      X = load 'myotherfile';
      B = group A by $0;
      C = foreach B generate group, myudf(B);
      D = native (jar=mymr.jar, infile=frompig outfile=topig);
      E = join D by $0, X by $0;
      ...
      

      This differs from streaming in that it allows the user to insert an arbitrary amount of native processing, whereas streaming allows the insertion of one binary. It also differs in that, for streaming, data is piped directly into and out of the binary as part of the pig pipeline. Here the pipeline would be broken, data written to disk, and the native block invoked, then data read back from disk.

      Another alternative is to say this is unnecessary because the user can do the coordination from java, using the PIgServer interface to run pig and calling the map reduce job explicitly. The advantages of the native keyword are that the user need not be worried about coordination between the jobs, pig will take care of it. Also the user can make use of existing java applications without being a java programmer.

      Attachments

        1. NativeImplInitial.patch
          40 kB
          Aniket Namadeo Mokashi
        2. NativeMapReduceFinale1.patch
          53 kB
          Aniket Namadeo Mokashi
        3. NativeMapReduceFinale2.patch
          65 kB
          Aniket Namadeo Mokashi
        4. NativeMapReduceFinale3.patch
          66 kB
          Aniket Namadeo Mokashi
        5. PIG-506.2.patch
          42 kB
          Thejas Nair
        6. PIG-506.3.patch
          46 kB
          Thejas Nair
        7. PIG-506.patch
          68 kB
          Thejas Nair
        8. TestWordCount.jar
          3 kB
          Aniket Namadeo Mokashi

        Activity

          People

            aniket486 Aniket Namadeo Mokashi
            gates Alan Gates
            Votes:
            3 Vote for this issue
            Watchers:
            7 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: