Description
1. Start HiveThriftServer2.
2. Connect to thriftserver through beeline.
3. Close the beeline.
4. repeat step2 and step 3 for several times, which caused the leak of Memory.
we found there are many directories never be dropped under the path
hive.exec.local.scratchdir
and
hive.exec.scratchdir
, as we know the scratchdir has been added to deleteOnExit when it be created. So it means that the cache size of FileSystem deleteOnExit will keep increasing until JVM terminated.
In addition, we use
jmap -histo:live [PID]
to printout the size of objects in HiveThriftServer2 Process, we can find the object "org.apache.spark.sql.hive.client.HiveClientImpl" and "org.apache.hadoop.hive.ql.session.SessionState" keep increasing even though we closed all the beeline connections, which caused the leak of Memory.
Attachments
Issue Links
- is duplicated by
-
SPARK-15401 Spark Thrift server creates empty directories in tmp directory on the driver
-
- Resolved
-
- links to