当前位置: 首页>>代码示例>>Java>>正文


Java StringTableSection类代码示例

本文整理汇总了Java中org.apache.hadoop.hdfs.server.namenode.FsImageProto.StringTableSection的典型用法代码示例。如果您正苦于以下问题:Java StringTableSection类的具体用法?Java StringTableSection怎么用?Java StringTableSection使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


StringTableSection类属于org.apache.hadoop.hdfs.server.namenode.FsImageProto包,在下文中一共展示了StringTableSection类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: loadStringTableSection

import org.apache.hadoop.hdfs.server.namenode.FsImageProto.StringTableSection; //导入依赖的package包/类
private void loadStringTableSection(InputStream in) throws IOException {
  StringTableSection s = StringTableSection.parseDelimitedFrom(in);
  ctx.stringTable = new String[s.getNumEntry() + 1];
  for (int i = 0; i < s.getNumEntry(); ++i) {
    StringTableSection.Entry e = StringTableSection.Entry
        .parseDelimitedFrom(in);
    ctx.stringTable[e.getId()] = e.getStr();
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:10,代码来源:FSImageFormatProtobuf.java

示例2: saveStringTableSection

import org.apache.hadoop.hdfs.server.namenode.FsImageProto.StringTableSection; //导入依赖的package包/类
private void saveStringTableSection(FileSummary.Builder summary)
    throws IOException {
  OutputStream out = sectionOutputStream;
  StringTableSection.Builder b = StringTableSection.newBuilder()
      .setNumEntry(saverContext.stringMap.size());
  b.build().writeDelimitedTo(out);
  for (Entry<String, Integer> e : saverContext.stringMap.entrySet()) {
    StringTableSection.Entry.Builder eb = StringTableSection.Entry
        .newBuilder().setId(e.getValue()).setStr(e.getKey());
    eb.build().writeDelimitedTo(out);
  }
  commitSection(summary, SectionName.STRING_TABLE);
}
 
开发者ID:naver,项目名称:hadoop,代码行数:14,代码来源:FSImageFormatProtobuf.java

示例3: loadStringTable

import org.apache.hadoop.hdfs.server.namenode.FsImageProto.StringTableSection; //导入依赖的package包/类
private void loadStringTable(InputStream in) throws IOException {
  StringTableSection s = StringTableSection.parseDelimitedFrom(in);
  stringTable = new String[s.getNumEntry() + 1];
  for (int i = 0; i < s.getNumEntry(); ++i) {
    StringTableSection.Entry e = StringTableSection.Entry
        .parseDelimitedFrom(in);
    stringTable[e.getId()] = e.getStr();
  }
}
 
开发者ID:naver,项目名称:hadoop,代码行数:10,代码来源:PBImageXmlWriter.java

示例4: loadStringTable

import org.apache.hadoop.hdfs.server.namenode.FsImageProto.StringTableSection; //导入依赖的package包/类
private void loadStringTable(InputStream in) throws IOException {
  StringTableSection s = StringTableSection.parseDelimitedFrom(in);
  if (LOG.isDebugEnabled()) {
    LOG.debug("Found " + s.getNumEntry() + " strings in string section");
  }
  stringTable = new String[s.getNumEntry() + 1];
  for (int i = 0; i < s.getNumEntry(); ++i) {
    StringTableSection.Entry e = StringTableSection.Entry
        .parseDelimitedFrom(in);
    stringTable[e.getId()] = e.getStr();
    if (LOG.isTraceEnabled()) {
      LOG.trace("Loaded string " + e.getStr());
    }
  }
}
 
开发者ID:Seagate,项目名称:hadoop-on-lustre2,代码行数:16,代码来源:LsrPBImage.java


注:本文中的org.apache.hadoop.hdfs.server.namenode.FsImageProto.StringTableSection类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。