[
https://issues.apache.org/jira/browse/HIVE-1402?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13691446#comment-13691446
]
Navis commented on HIVE-1402:
-----------------------------
I've seen code in FileInputFormat in hadoop which ignores files starting with
'_' and '.'
{noformat}
private static final PathFilter hiddenFileFilter = new PathFilter(){
public boolean accept(Path p){
String name = p.getName();
return !name.startsWith("_") && !name.startsWith(".");
}
};
{noformat}
If it's convention as you said, I don't bother changing it to '_' (I'll update
it tomorrow morning). Thanks for review!
> Add parallel ORDER BY to Hive
> -----------------------------
>
> Key: HIVE-1402
> URL: https://issues.apache.org/jira/browse/HIVE-1402
> Project: Hive
> Issue Type: New Feature
> Components: Query Processor
> Reporter: Jeff Hammerbacher
> Assignee: Navis
> Labels: optimization
> Attachments: HIVE-1402.1.patch.txt, HIVE-1402.D8895.1.patch,
> HIVE-1402.D8895.2.patch, HIVE-1402.D8895.3.patch, HIVE-1402.D8895.4.patch
>
>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira