コード例 #1
0
ファイル: HFileWriterV2.java プロジェクト: jimmyjin/hbase
 @Override
 public Writer createWriter(
     FileSystem fs,
     Path path,
     FSDataOutputStream ostream,
     KVComparator comparator,
     HFileContext context)
     throws IOException {
   context.setIncludesTags(false); // HFile V2 does not deal with tags at all!
   return new HFileWriterV2(conf, cacheConf, fs, path, ostream, comparator, context);
 }