class ThreadFactoryWithGarbageCleanup extends ThreadFactory
A ThreadFactory for constructing new HiveServer2 threads that lets you plug in custom cleanup code to be called before this thread is GC-ed. Currently cleans up the following: 1. ThreadLocal RawStore object: In case of an embedded metastore, HiveServer2 threads (foreground and background) end up caching a ThreadLocal RawStore object. The ThreadLocal RawStore object has an instance of PersistenceManagerFactory and PersistenceManager. The PersistenceManagerFactory keeps a cache of PersistenceManager objects, which are only removed when PersistenceManager#close method is called. HiveServer2 uses ExecutorService for managing thread pools for foreground and background threads. ExecutorService unfortunately does not provide any hooks to be called, when a thread from the pool is terminated. As a solution, we're using this ThreadFactory to keep a cache of RawStore objects per thread. And we are doing clean shutdown in the finalizer for each thread.
- Alphabetic
- By Inheritance
- ThreadFactoryWithGarbageCleanup
- ThreadFactory
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def newThread(runnable: Runnable): Thread
- Definition Classes
- ThreadFactoryWithGarbageCleanup → ThreadFactory
- Annotations
- @Override()
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)