[ https://issues.apache.org/jira/browse/FLINK-4910?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15611882#comment-15611882 ]
ASF GitHub Bot commented on FLINK-4910: --------------------------------------- Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/2691#discussion_r85330867 --- Diff: flink-core/src/main/java/org/apache/flink/core/fs/SafetyNetWrapperFileSystem.java --- @@ -0,0 +1,167 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.flink.core.fs; + +import org.apache.flink.configuration.Configuration; +import org.apache.flink.util.Preconditions; +import org.apache.flink.util.WrappingProxy; + +import java.io.IOException; +import java.net.URI; + +/** + * This is a {@link WrappingProxy} around {@link FileSystem} which (i) wraps all opened streams as + * {@link ClosingFSDataInputStream} or {@link ClosingFSDataOutputStream} and (ii) registers them to + * a {@link SafetyNetCloseableRegistry}. + * + * Streams obtained by this are therefore managed by the {@link SafetyNetCloseableRegistry} to prevent resource leaks + * from unclosed streams. + */ +public class SafetyNetWrapperFileSystem extends FileSystem implements WrappingProxy<FileSystem> { + + private final SafetyNetCloseableRegistry registry; + private final FileSystem unsafeFileSystem; + + public SafetyNetWrapperFileSystem(FileSystem unsafeFileSystem, SafetyNetCloseableRegistry registry) { + this.registry = Preconditions.checkNotNull(registry); + this.unsafeFileSystem = Preconditions.checkNotNull(unsafeFileSystem); + } + + public static FileSystem getLocalFileSystem() { --- End diff -- Overriding the static methods is probably not necessary. I would not expect to use `SafetyNetWrapperFileSystem.get(...)`. > Introduce safety net for closing file system streams > ---------------------------------------------------- > > Key: FLINK-4910 > URL: https://issues.apache.org/jira/browse/FLINK-4910 > Project: Flink > Issue Type: Improvement > Reporter: Stefan Richter > Assignee: Stefan Richter > > Streams that are opened through {{FileSystem}} must be closed at the end of > their life cycle. However, we found hints that some code forgets to close > such streams. > We should introduce i) a mechanism that closes leaking unclosed streams after > usage and ii) provides logging that helps us to track down and fi the sources > of such leaks. -- This message was sent by Atlassian JIRA (v6.3.4#6332)