You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-issues@hadoop.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2014/02/04 01:23:06 UTC

[jira] [Commented] (MAPREDUCE-5739) DirectoryCollection#createNonExistentDirs() may use an invalid iterator

    [ https://issues.apache.org/jira/browse/MAPREDUCE-5739?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13890181#comment-13890181 ] 

Ted Yu commented on MAPREDUCE-5739:
-----------------------------------

Similar issue exists in checkDirs().

> DirectoryCollection#createNonExistentDirs() may use an invalid iterator
> -----------------------------------------------------------------------
>
>                 Key: MAPREDUCE-5739
>                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-5739
>             Project: Hadoop Map/Reduce
>          Issue Type: Bug
>            Reporter: Ted Yu
>
> Here is related code:
> {code}
>     for (final String dir : localDirs) {
>       try {
>         createDir(localFs, new Path(dir), perm);
>       } catch (IOException e) {
>         LOG.warn("Unable to create directory " + dir + " error " +
>             e.getMessage() + ", removing from the list of valid directories.");
>         localDirs.remove(dir);
> {code}
> Call to localDirs.remove() modifies Iterable "localDirs" which invalidates the iterator.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)