Uploaded image for project: 'Apache Drill'
  1. Apache Drill
  2. DRILL-7147

Source order of "drill-env.sh" and "distrib-env.sh" should be swapped

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Minor
    • Resolution: Not A Problem
    • 1.15.0
    • 1.16.0
    • Execution - Flow
    • None

    Description

      In bin/drill-config.sh, the description of the source order is:

      # Variables may be set in one of four places:
      #
      #   Environment (per run)
      #   drill-env.sh (per site)
      #   distrib-env.sh (per distribution)
      #   drill-config.sh (this file, Drill defaults)
      #
      # Properties "inherit" from items lower on the list, and may be "overridden" by items
      # higher on the list. In the environment, just set the variable:
      

      However actually bin/drill-config.sh sources drill-env.sh firstly, and then distrib-env.sh.

      drillEnv="$DRILL_CONF_DIR/drill-env.sh"
      if [ -r "$drillEnv" ]; then
        . "$drillEnv"
      fi
      ...
      
      distribEnv="$DRILL_CONF_DIR/distrib-env.sh"
      if [ -r "$distribEnv" ]; then
        . "$distribEnv"
      else
        distribEnv="$DRILL_HOME/conf/distrib-env.sh"
        if [ -r "$distribEnv" ]; then
          . "$distribEnv"
        fi
      fi
      
      

      We need to swap the source order of drill-env.sh and distrib-env.sh.

      Attachments

        Issue Links

          Activity

            People

              agirish Abhishek Girish
              haozhu Hao Zhu
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: