Package org.apache.drill.exec.store.dfs
Interface OpenFileTracker
- All Known Implementing Classes:
DrillFileSystem
public interface OpenFileTracker
Interface to track opening and closing of files.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
fileClosed
(DrillFSDataInputStream fsDataInputStream) Remove the givenDrillFSDataInputStream
from opened file list.void
fileOpened
(org.apache.hadoop.fs.Path path, DrillFSDataInputStream fsDataInputStream) Add new file location andDrillFSDataInputStream
to list.
-
Method Details
-
fileOpened
Add new file location andDrillFSDataInputStream
to list. -
fileClosed
Remove the givenDrillFSDataInputStream
from opened file list.- Parameters:
fsDataInputStream
-
-