本文整理匯總了Java中org.apache.hadoop.io.compress.CompressionCodecFactory.getCodecByName方法的典型用法代碼示例。如果您正苦於以下問題:Java CompressionCodecFactory.getCodecByName方法的具體用法?Java CompressionCodecFactory.getCodecByName怎麽用?Java CompressionCodecFactory.getCodecByName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.hadoop.io.compress.CompressionCodecFactory
的用法示例。
在下文中一共展示了CompressionCodecFactory.getCodecByName方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: open
import org.apache.hadoop.io.compress.CompressionCodecFactory; //導入方法依賴的package包/類
@Override
public void open(FileSystem fs, Path path) throws IOException {
super.open(fs, path);
if (keyClass == null) {
throw new IllegalStateException("Key Class has not been initialized.");
}
if (valueClass == null) {
throw new IllegalStateException("Value Class has not been initialized.");
}
CompressionCodec codec = null;
Configuration conf = fs.getConf();
if (!compressionCodecName.equals("None")) {
CompressionCodecFactory codecFactory = new CompressionCodecFactory(conf);
codec = codecFactory.getCodecByName(compressionCodecName);
if (codec == null) {
throw new RuntimeException("Codec " + compressionCodecName + " not found.");
}
}
// the non-deprecated constructor syntax is only available in recent hadoop versions...
writer = SequenceFile.createWriter(conf,
getStream(),
keyClass,
valueClass,
compressionType,
codec);
}
示例2: open
import org.apache.hadoop.io.compress.CompressionCodecFactory; //導入方法依賴的package包/類
@Override
public void open(FileSystem fs, Path path) throws IOException {
super.open(fs, path);
if (keyClass == null) {
throw new IllegalStateException("Key Class has not been initialized.");
}
if (valueClass == null) {
throw new IllegalStateException("Value Class has not been initialized.");
}
CompressionCodec codec = null;
Configuration conf = HadoopFileSystem.getHadoopConfiguration();
if (!compressionCodecName.equals("None")) {
CompressionCodecFactory codecFactory = new CompressionCodecFactory(conf);
codec = codecFactory.getCodecByName(compressionCodecName);
if (codec == null) {
throw new RuntimeException("Codec " + compressionCodecName + " not found.");
}
}
// the non-deprecated constructor syntax is only available in recent hadoop versions...
writer = SequenceFile.createWriter(conf,
getStream(),
keyClass,
valueClass,
compressionType,
codec);
}