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


Java TableListing类代码示例

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


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

示例1: listSpanReceivers

import org.apache.hadoop.tools.TableListing; //导入依赖的package包/类
private int listSpanReceivers(List<String> args) throws IOException {
  SpanReceiverInfo infos[] = remote.listSpanReceivers();
  if (infos.length == 0) {
    System.out.println("[no span receivers found]");
    return 0;
  }
  TableListing listing = new TableListing.Builder().
      addField("ID").
      addField("CLASS").
      showHeaders().
      build();
  for (SpanReceiverInfo info : infos) {
    listing.addRow("" + info.getId(), info.getClassName());
  }
  System.out.println(listing.toString());
  return 0;
}
 
开发者ID:nucypher,项目名称:hadoop-oss,代码行数:18,代码来源:TraceAdmin.java

示例2: run

import org.apache.hadoop.tools.TableListing; //导入依赖的package包/类
@Override
public int run(Configuration conf, List<String> args) throws IOException {
  if (!args.isEmpty()) {
    System.err.println("Can't understand argument: " + args.get(0));
    return 1;
  }

  final DistributedFileSystem dfs = AdminHelper.getDFS(conf);
  try {
    final TableListing listing = new TableListing.Builder()
      .addField("").addField("", true)
      .wrapWidth(AdminHelper.MAX_LINE_WIDTH).hideHeaders().build();
    final RemoteIterator<EncryptionZone> it = dfs.listEncryptionZones();
    while (it.hasNext()) {
      EncryptionZone ez = it.next();
      listing.addRow(ez.getPath(), ez.getKeyName());
    }
    System.out.println(listing.toString());
  } catch (IOException e) {
    System.err.println(prettifyException(e));
    return 2;
  }

  return 0;
}
 
开发者ID:naver,项目名称:hadoop,代码行数:26,代码来源:CryptoAdmin.java

示例3: getLongUsage

import org.apache.hadoop.tools.TableListing; //导入依赖的package包/类
@Override
public String getLongUsage() {
  TableListing listing = AdminHelper.getOptionDescriptionListing();
  listing.addRow("<path>", "A path to cache. The path can be " +
      "a directory or a file.");
  listing.addRow("<pool-name>", "The pool to which the directive will be " +
      "added. You must have write permission on the cache pool "
      + "in order to add new directives.");
  listing.addRow("-force",
      "Skips checking of cache pool resource limits.");
  listing.addRow("<replication>", "The cache replication factor to use. " +
      "Defaults to 1.");
  listing.addRow("<time-to-live>", "How long the directive is " +
      "valid. Can be specified in minutes, hours, and days, e.g. " +
      "30m, 4h, 2d. Valid units are [smhd]." +
      " \"never\" indicates a directive that never expires." +
      " If unspecified, the directive never expires.");
  return getShortUsage() + "\n" +
    "Add a new cache directive.\n\n" +
    listing.toString();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:22,代码来源:CacheAdmin.java

示例4: run

import org.apache.hadoop.tools.TableListing; //导入依赖的package包/类
@Override
public int run(Configuration conf, List<String> args) throws IOException {
  if (!args.isEmpty()) {
    System.err.println("Can't understand argument: " + args.get(0));
    return 1;
  }

  final DistributedFileSystem dfs = getDFS(conf);
  try {
    final TableListing listing = new TableListing.Builder()
      .addField("").addField("", true)
      .wrapWidth(MAX_LINE_WIDTH).hideHeaders().build();
    final RemoteIterator<EncryptionZone> it = dfs.listEncryptionZones();
    while (it.hasNext()) {
      EncryptionZone ez = it.next();
      listing.addRow(ez.getPath(), ez.getKeyName());
    }
    System.out.println(listing.toString());
  } catch (IOException e) {
    System.err.println(prettifyException(e));
    return 2;
  }

  return 0;
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:26,代码来源:CryptoAdmin.java

示例5: getLongUsage

import org.apache.hadoop.tools.TableListing; //导入依赖的package包/类
@Override
public String getLongUsage() {
  TableListing listing = getOptionDescriptionListing();
  listing.addRow("<path>", "A path to cache. The path can be " +
      "a directory or a file.");
  listing.addRow("<pool-name>", "The pool to which the directive will be " +
      "added. You must have write permission on the cache pool "
      + "in order to add new directives.");
  listing.addRow("-force",
      "Skips checking of cache pool resource limits.");
  listing.addRow("<replication>", "The cache replication factor to use. " +
      "Defaults to 1.");
  listing.addRow("<time-to-live>", "How long the directive is " +
      "valid. Can be specified in minutes, hours, and days, e.g. " +
      "30m, 4h, 2d. Valid units are [smhd]." +
      " \"never\" indicates a directive that never expires." +
      " If unspecified, the directive never expires.");
  return getShortUsage() + "\n" +
    "Add a new cache directive.\n\n" +
    listing.toString();
}
 
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:22,代码来源:CacheAdmin.java

示例6: getLongUsage

import org.apache.hadoop.tools.TableListing; //导入依赖的package包/类
@Override
public String getLongUsage() {
  final TableListing listing = AdminHelper.getOptionDescriptionListing();
  listing.addRow("<path>", "The path of the encryption zone to create. " +
    "It must be an empty directory.");
  listing.addRow("<keyName>", "Name of the key to use for the " +
      "encryption zone.");
  return getShortUsage() + "\n" +
    "Create a new encryption zone.\n\n" +
    listing.toString();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:12,代码来源:CryptoAdmin.java

示例7: getLongUsage

import org.apache.hadoop.tools.TableListing; //导入依赖的package包/类
@Override
public String getLongUsage() {
  final TableListing listing = AdminHelper.getOptionDescriptionListing();
  listing.addRow("<command-name>", "The command for which to get " +
      "detailed help. If no command is specified, print detailed help for " +
      "all commands");
  return getShortUsage() + "\n" +
      "Get detailed help about a command.\n\n" +
      listing.toString();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:11,代码来源:AdminHelper.java

示例8: getLongUsage

import org.apache.hadoop.tools.TableListing; //导入依赖的package包/类
@Override
public String getLongUsage() {
  final TableListing listing = AdminHelper.getOptionDescriptionListing();
  listing.addRow("<path>",
      "The path of the file/directory for getting the storage policy");
  return getShortUsage() + "\n" +
      "Get the storage policy of a file/directory.\n\n" +
      listing.toString();
}
 
开发者ID:naver,项目名称:hadoop,代码行数:10,代码来源:StoragePolicyAdmin.java


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