Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-6364

HiveServer2 - Request serving thread should get class loader from existing SessionState

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • None
    • 0.13.0
    • HiveServer2
    • None

    Description

      SessionState is created for each session in HS2. If we do any add jars, a class loader is set in the SessionState's conf object. This class loader should also be set in each thread that serves request of the same session.

      Scenario (both requests are in the same session)-

      // req 1
      add jar foo.jar // Served by thread th1, this updates class loader and sets in SessionState.conf
      
      // req2 served by th2, such that th1 != th2
      CREATE TEMPORARY FUNCTION foo_udf AS 'some class in foo.jar' 
      // This can throw class not found error, because although 
      // the new thread (th2) gets the same session state as th1,
      // the class loader is different (Thread.currentThread.getContextClassLoader()
      
      

      Attachments

        1. HIVE-6364.1.patch
          3 kB
          Jaideep Dhok

        Issue Links

          Activity

            People

              Unassigned Unassigned
              jaideepdhok Jaideep Dhok
              Votes:
              0 Vote for this issue
              Watchers:
              5 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: