Example usage for org.apache.hadoop.mapred Utils.OutputFileUtils.OutputFilesFilter subclass-usage

List of usage examples for org.apache.hadoop.mapred Utils.OutputFileUtils.OutputFilesFilter subclass-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.mapred Utils.OutputFileUtils.OutputFilesFilter subclass-usage.

Usage

From source file org.apache.drill.exec.store.dfs.DrillPathFilter.java

public class DrillPathFilter extends Utils.OutputFileUtils.OutputFilesFilter {
    @Override
    public boolean accept(Path path) {
        if (path.getName().startsWith(DrillFileSystem.HIDDEN_FILE_PREFIX)) {
            return false;
        }