You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Surendra Singh Lilhore (JIRA)" <ji...@apache.org> on 2018/07/16 09:23:00 UTC

[jira] [Created] (HADOOP-15608) File expansion should be disable in hadoop-functions.sh when iterate over HADOOP_CLASSPATH

Surendra Singh Lilhore created HADOOP-15608:
-----------------------------------------------

             Summary: File expansion should be disable in hadoop-functions.sh when iterate over HADOOP_CLASSPATH
                 Key: HADOOP-15608
                 URL: https://issues.apache.org/jira/browse/HADOOP-15608
             Project: Hadoop Common
          Issue Type: Bug
            Reporter: Surendra Singh Lilhore
            Assignee: Surendra Singh Lilhore


 When the HADOOP_CLASSPATH set from outside and it use "wildcard characters" then forloop in hadoop-funtions.sh expand it. This will case "Argument list too long" exception for JVM.

Example:

Suppose HADOOP_CLASSPATH value is "/lib/*:/opt/example.jar"

Now this code 
{code}
    for idx in $(echo "${HADOOP_CLASSPATH}" | tr : '\n'); do
      array[${c}]=${idx}
      ((c=c+1))
    done
{code}

it will expand /lib/* directory and add all the jars inside /lib in classpath. This should not append.

CC : [~aw]



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-dev-help@hadoop.apache.org