• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java TableListing类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了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;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java DistributedMember类代码示例发布时间:2022-05-23
下一篇:
Java SwiftOperationFailedException类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap