forked from apache/hadoop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HDFS-17381. Distcp of EC files should not be limited to DFS. (apache#…
…6551) Contributed by Sadanand Shenoy
- Loading branch information
1 parent
21ec686
commit 49a4958
Showing
9 changed files
with
271 additions
and
36 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
50 changes: 50 additions & 0 deletions
50
...op-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/WithErasureCoding.java
This file contains 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,50 @@ | ||
/* | ||
* 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.fs; | ||
|
||
import java.io.IOException; | ||
|
||
/** | ||
* Filesystems that support EC can implement this interface. | ||
*/ | ||
public interface WithErasureCoding { | ||
|
||
/** | ||
* Get the EC Policy name of the given file's fileStatus. | ||
* If the file is not erasure coded, this shall return null. | ||
* Callers will make sure to check if fileStatus isInstance of | ||
* an FS that implements this interface. | ||
* If the call fails due to some error, this shall return null. | ||
* @param fileStatus object of the file whose ecPolicy needs to be obtained. | ||
* @return the ec Policy name | ||
*/ | ||
String getErasureCodingPolicyName(FileStatus fileStatus); | ||
|
||
/** | ||
* Set the given ecPolicy on the path. | ||
* The path and ecPolicyName should be valid (not null/empty, the | ||
* implementing FS shall support the supplied ecPolicy). | ||
* implementations can throw IOException if these conditions are not met. | ||
* @param path on which the EC policy needs to be set. | ||
* @param ecPolicyName the EC policy. | ||
* @throws IOException if there is an error during the set op. | ||
*/ | ||
void setErasureCodingPolicy(Path path, String ecPolicyName) throws | ||
IOException; | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.