Uploaded image for project: 'Pig'
  1. Pig
  2. PIG-2815

class loader management in PigContext

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 0.9.0
    • 0.11
    • impl
    • None

    Description

      The way PigContext.classloader and resolveClassName() are managed can lead to strange class loading issues, especially when not all register statements are at the top (example in the first comment).

      Two factors contribute to this: sometimes only one of them and sometimes together:

      1. a new classloader (CL) is created after registering each jar.
        • but the new jar's parent is the root CL rather than previous CL, effectively throwing previous CL away.
      2. resolveClassName() caches classes based on just the name
        • A class is not defined by name alone. Classes loaded by two different unrelated CLs are different objects even if both extract the class from same physical jar file.
        • because of (1), the cached class is not necessarily same as the class that would be loaded based on 'current' CL

      having different class objects for same class have many subtle side effects. e.g. there would be two instances of static variables.

      I think both should be fixed.. thought fixing one of them might be good enough in many cases. I will add a patch.

      Attachments

        1. PIG-2815.patch
          3 kB
          Raghu Angadi
        2. PIG-2815.patch
          6 kB
          Raghu Angadi
        3. PIG-2815-branch-0.9.patch
          7 kB
          Raghu Angadi
        4. PIG-2815-branch-0.9.patch
          7 kB
          Raghu Angadi

        Activity

          People

            rangadi Raghu Angadi
            rangadi Raghu Angadi
            Votes:
            0 Vote for this issue
            Watchers:
            6 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: