Package org.apache.hadoop.hbase.fs
Class ErasureCodingUtils
java.lang.Object
org.apache.hadoop.hbase.fs.ErasureCodingUtils
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprivate static voidcheckAvailable(org.apache.hadoop.hdfs.DistributedFileSystem dfs, String policy) private static org.apache.hadoop.fs.PathcreateTempDir(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path tempDir) private static org.apache.hadoop.hdfs.DistributedFileSystemgetDfs(org.apache.hadoop.conf.Configuration conf) private static org.apache.hadoop.hdfs.DistributedFileSystemgetDfs(org.apache.hadoop.fs.FileSystem fs) static booleanneedsSync(TableDescriptor oldDescriptor, TableDescriptor newDescriptor) Check if EC policy is different between two descriptorsstatic voidSets the EC policy on the pathstatic voidsetPolicy(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path rootDir, TableName tableName, String policy) Sets the EC policy on the table directory for the specified tablestatic voidsync(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path rootDir, TableDescriptor newDescriptor) Sync the EC policy state from the newDescriptor onto the FS for the table dir of the provided table descriptor.static voidunsetPolicy(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path rootDir, TableName tableName) Unsets any EC policy specified on the path.static voidverifySupport(org.apache.hadoop.conf.Configuration conf, String policy) Runs checks against the FileSystem, verifying that HDFS is supported and the policy is available, enabled, and works with a simple write.
- 
Field Details- 
LOG
 
- 
- 
Constructor Details- 
ErasureCodingUtilsprivate ErasureCodingUtils()
 
- 
- 
Method Details- 
verifySupportpublic static void verifySupport(org.apache.hadoop.conf.Configuration conf, String policy) throws HBaseIOException Runs checks against the FileSystem, verifying that HDFS is supported and the policy is available, enabled, and works with a simple write.- Throws:
- HBaseIOException
 
- 
createTempDirprivate static org.apache.hadoop.fs.Path createTempDir(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path tempDir) throws HBaseIOException - Throws:
- HBaseIOException
 
- 
checkAvailableprivate static void checkAvailable(org.apache.hadoop.hdfs.DistributedFileSystem dfs, String policy) throws HBaseIOException - Throws:
- HBaseIOException
 
- 
needsSyncCheck if EC policy is different between two descriptors- Returns:
- true if a sync is necessary
 
- 
syncpublic static void sync(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path rootDir, TableDescriptor newDescriptor) throws IOException Sync the EC policy state from the newDescriptor onto the FS for the table dir of the provided table descriptor. If the policy is null, we will remove erasure coding from the FS for the table dir. If it's non-null, we'll set it to that policy.- Parameters:
- newDescriptor- descriptor containing the policy and table name
- Throws:
- IOException
 
- 
setPolicypublic static void setPolicy(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path rootDir, TableName tableName, String policy) throws IOException Sets the EC policy on the table directory for the specified table- Throws:
- IOException
 
- 
setPolicypublic static void setPolicy(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, String policy) throws IOException Sets the EC policy on the path- Throws:
- IOException
 
- 
unsetPolicypublic static void unsetPolicy(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path rootDir, TableName tableName) throws IOException Unsets any EC policy specified on the path.- Throws:
- IOException
 
- 
getDfsprivate static org.apache.hadoop.hdfs.DistributedFileSystem getDfs(org.apache.hadoop.conf.Configuration conf) throws HBaseIOException - Throws:
- HBaseIOException
 
- 
getDfsprivate static org.apache.hadoop.hdfs.DistributedFileSystem getDfs(org.apache.hadoop.fs.FileSystem fs) throws DoNotRetryIOException - Throws:
- DoNotRetryIOException
 
 
-