YARN-10976. Fix resource leak due to Files.walk (#3552)
Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
This commit is contained in:
parent
d09b380dc2
commit
ae95caa60e
@ -27,6 +27,7 @@
|
||||
import java.util.Set;
|
||||
import java.util.function.Function;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import org.apache.commons.lang3.mutable.MutableInt;
|
||||
import org.apache.hadoop.util.Shell;
|
||||
@ -58,12 +59,12 @@ class VEDeviceDiscoverer {
|
||||
|
||||
public Set<Device> getDevicesFromPath(String path) throws IOException {
|
||||
MutableInt counter = new MutableInt(0);
|
||||
|
||||
return Files.walk(Paths.get(path), 1)
|
||||
.filter(p -> p.toFile().getName().startsWith("veslot"))
|
||||
try (Stream<Path> stream = Files.walk(Paths.get(path), 1)) {
|
||||
return stream.filter(p -> p.toFile().getName().startsWith("veslot"))
|
||||
.map(p -> toDevice(p, counter))
|
||||
.collect(Collectors.toSet());
|
||||
}
|
||||
}
|
||||
|
||||
private Device toDevice(Path p, MutableInt counter) {
|
||||
CommandExecutor executor =
|
||||
|
Loading…
Reference in New Issue
Block a user