You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Nicolas Lalevée (JIRA)" <ji...@apache.org> on 2013/06/14 18:12:20 UTC

[jira] [Updated] (HIVE-4737) Allow access to MapredContext

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

Nicolas Lalevée updated HIVE-4737:
----------------------------------

    Description: 
In order to tackle HIVE-1016, I have been pointed to HIVE-3628. But MapredContext.get() is package protected.

Here is my current work around, a hack which I put in my code:
{code:java}
package org.apache.hadoop.hive.ql.exec;

public class MapredContextAccessor {

    public static MapredContext get() {
        return MapredContext.get();
    }

}
{code}


  was:
In order to tackle HIVE-1016, I have been pointed to HIVE-3628. But MapredContext.get() is package protected.

Here is my current work around, a hack which I put in my code:
{quote}
package org.apache.hadoop.hive.ql.exec;

public class MapredContextAccessor {

    public static MapredContext get() {
        return MapredContext.get();
    }

}
{quote}


    
> Allow access to MapredContext
> -----------------------------
>
>                 Key: HIVE-4737
>                 URL: https://issues.apache.org/jira/browse/HIVE-4737
>             Project: Hive
>          Issue Type: Improvement
>    Affects Versions: 0.11.0
>            Reporter: Nicolas Lalevée
>
> In order to tackle HIVE-1016, I have been pointed to HIVE-3628. But MapredContext.get() is package protected.
> Here is my current work around, a hack which I put in my code:
> {code:java}
> package org.apache.hadoop.hive.ql.exec;
> public class MapredContextAccessor {
>     public static MapredContext get() {
>         return MapredContext.get();
>     }
> }
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira