-
Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-25712 backport HBASE-25962 to branch-1 #3104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
joshelser
wants to merge
2
commits into
apache:branch-1
from
joshelser:25712-close-wait-replication-backport
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 106 additions & 0 deletions
106
hbase-server/src/test/java/org/apache/hadoop/hbase/wal/FileSystemProxy.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,106 @@ | ||
| /** | ||
| * 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.hadoop.hbase.wal; | ||
|
|
||
| import java.io.FileNotFoundException; | ||
| import java.io.IOException; | ||
| import java.net.URI; | ||
|
|
||
| import org.apache.hadoop.fs.FSDataInputStream; | ||
| import org.apache.hadoop.fs.FSDataOutputStream; | ||
| import org.apache.hadoop.fs.FileStatus; | ||
| import org.apache.hadoop.fs.FileSystem; | ||
| import org.apache.hadoop.fs.Path; | ||
| import org.apache.hadoop.fs.permission.FsPermission; | ||
| import org.apache.hadoop.util.Progressable; | ||
|
|
||
| /** | ||
| * Create a non-abstract "proxy" for FileSystem because FileSystem is an | ||
| * abstract class and not an interface. Only interfaces can be used with the | ||
| * Java Proxy class to override functionality via an InvocationHandler. | ||
| * | ||
| */ | ||
| public class FileSystemProxy extends FileSystem { | ||
| private final FileSystem real; | ||
|
|
||
| public FileSystemProxy(FileSystem real) { | ||
| this.real = real; | ||
| } | ||
|
|
||
| @Override | ||
| public FSDataInputStream open(Path p) throws IOException { | ||
| return real.open(p); | ||
| } | ||
|
|
||
| @Override | ||
| public URI getUri() { | ||
| return real.getUri(); | ||
| } | ||
|
|
||
| @Override | ||
| public FSDataInputStream open(Path f, int bufferSize) throws IOException { | ||
| return real.open(f, bufferSize); | ||
| } | ||
|
|
||
| @Override | ||
| public FSDataOutputStream create(Path f, FsPermission permission, boolean overwrite, | ||
| int bufferSize, short replication, long blockSize, Progressable progress) throws IOException { | ||
| return real.create(f, permission, overwrite, bufferSize, replication, blockSize, progress); | ||
| } | ||
|
|
||
| @Override | ||
| public FSDataOutputStream append(Path f, int bufferSize, Progressable progress) | ||
| throws IOException { | ||
| return real.append(f, bufferSize, progress); | ||
| } | ||
|
|
||
| @Override | ||
| public boolean rename(Path src, Path dst) throws IOException { | ||
| return real.rename(src, dst); | ||
| } | ||
|
|
||
| @Override | ||
| public boolean delete(Path f, boolean recursive) throws IOException { | ||
| return real.delete(f, recursive); | ||
| } | ||
|
|
||
| @Override | ||
| public FileStatus[] listStatus(Path f) throws FileNotFoundException, IOException { | ||
| return real.listStatus(f); | ||
| } | ||
|
|
||
| @Override | ||
| public void setWorkingDirectory(Path new_dir) { | ||
| real.setWorkingDirectory(new_dir); | ||
| } | ||
|
|
||
| @Override | ||
| public Path getWorkingDirectory() { | ||
| return real.getWorkingDirectory(); | ||
| } | ||
|
|
||
| @Override | ||
| public boolean mkdirs(Path f, FsPermission permission) throws IOException { | ||
| return real.mkdirs(f, permission); | ||
| } | ||
|
|
||
| @Override | ||
| public FileStatus getFileStatus(Path f) throws IOException { | ||
| return real.getFileStatus(f); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Catching
Exceptionis enough? No need to catchThrowableto avoid any possibility of still getting this leak?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Catching throwable is usually a smell as it also encompasses
java.lang.Error's. We definitely don't want to catchError's as we want to let them propagate as quickly as possible.