You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Vaibhav Gumashta (JIRA)" <ji...@apache.org> on 2016/05/05 22:22:12 UTC

[jira] [Updated] (HIVE-8761) JDOPersistenceManager creation should be controlled by at the Server level and not Thread level

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

Vaibhav Gumashta updated HIVE-8761:
-----------------------------------
    Assignee:     (was: Vaibhav Gumashta)

> JDOPersistenceManager creation should be controlled by at the Server level and not Thread level
> -----------------------------------------------------------------------------------------------
>
>                 Key: HIVE-8761
>                 URL: https://issues.apache.org/jira/browse/HIVE-8761
>             Project: Hive
>          Issue Type: Bug
>          Components: Metastore
>    Affects Versions: 0.15.0
>            Reporter: Vaibhav Gumashta
>
> When using JDO, we create a thread local RawStore (ObjectStore) object in each metastore thread. This leads to creation of a new  JDOPersistenceManager per thread which are cached in JDOPersistanceManagerFactory. To remove JDOPersistenceManager from JDOPersistanceManagerFactory, an explicit JDOPersistenceManager.close needs to be called. 
> This is a bad candidate for thread local as the effective object destruction requires the application to call close. So, when metastore threads are killed by the threadpool, this object will never be removed from the JDOPersistanceManagerFactory cache.
> We fixed this for HiveServer2 using embedded metastore (HIVE-7353) by customizing the GC collection of the dying thread, but I believe a better and more efficient solution is to pool JDOPersistenceManager objects and let each thread get an object for its use from the pool.
>  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)