You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Carl Steinbach (JIRA)" <ji...@apache.org> on 2010/07/26 07:56:50 UTC

[jira] Updated: (HIVE-816) MetastoreClient not being cached

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

Carl Steinbach updated HIVE-816:
--------------------------------

    Fix Version/s:     (was: 0.3.1)
                       (was: 0.5.0)

> MetastoreClient not being cached
> --------------------------------
>
>                 Key: HIVE-816
>                 URL: https://issues.apache.org/jira/browse/HIVE-816
>             Project: Hadoop Hive
>          Issue Type: Bug
>          Components: Metastore
>    Affects Versions: 0.3.0
>            Reporter: Dave Lerman
>            Assignee: Dave Lerman
>            Priority: Minor
>             Fix For: 0.4.0
>
>         Attachments: HIVE-816.patch
>
>
> In org.apache.hadoop.hive.ql.metadata.Hive.getMSC(), we create a new MetaStoreClient on every call because the result is not getting properly cached in the threadLocal:
> {code}
>   private IMetaStoreClient getMSC() throws MetaException {
>     IMetaStoreClient msc = threadLocalMSC.get();
>     if(msc == null) {
>       msc = this.createMetaStoreClient();
>       // THERE SHOULD BE A threadLocalMSC.set here!
>     }
>     return msc;
>   }
> {code}

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