[ 
https://issues.apache.org/jira/browse/HDFS-1133?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12864565#action_12864565
 ] 

Dmytro Molkov commented on HDFS-1133:
-------------------------------------

Thanks, Todd. I did not see this split method before (without escape 
character). I modified the patch and uploaded it to HDFS-1028.
Closing this one as a duplicate then

> Speedup INode.getPathNames
> --------------------------
>
>                 Key: HDFS-1133
>                 URL: https://issues.apache.org/jira/browse/HDFS-1133
>             Project: Hadoop HDFS
>          Issue Type: Improvement
>            Reporter: Dmytro Molkov
>            Assignee: Dmytro Molkov
>         Attachments: HDFS-split.patch
>
>
> Currently the method is implemented with the usage of String.split method. 
> But it is slow because it does regexp parsing of the string.
> If we were to reuse the StringUtil.split method which linearly goes through 
> the string and splits it on the delimiter characters it will speed up the 
> method by ~20%. Which is great for NameNode startup time. We can cut about 
> 20% of startup time with this change.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to