用户登录
用户注册

分享至

cassandra 管理

  • 作者: 你的网名那么丶
  • 来源: 51数据库
  • 2020-09-25
如何使用cassandra-cluster-admin 管理数据库
怎么将 文件参数 传递 到 job中呢?
在 client 我们调用了FileInputFormat.addInputPath(job, new Path(otherArgs[0]));
实际上 addInputPath 做了以下的事情(将文件路径加载到了conf中)
public static void addInputPath(Job job,
Path path) throws IOException {
Configuration conf = job.getConfiguration();
path = path.getFileSystem(conf).makeQualified(path);
String dirStr = StringUtils.escapeString(path.toString());
String dirs = conf.get(INPUT_DIR);
conf.set(INPUT_DIR, dirs == null ? dirStr : dirs + "," + dirStr);
}



  

搜一下:如何使用cassandra-cluster-admin 管理数据库
软件
前端设计
程序设计
Java相关