Flume学习笔记 --- 命令参数

运行时切换到安装目录: 

例如:

/opt/cloudera/parcels/CDH/bin/flume-ng version

 

Flume学习笔记 --- 命令参数_第1张图片

下面是具体的分类参数 
commands: 
  help                      display this help text                   展示flume当前参数帮助 
  agent                     run a Flume agent                      运行一个agent 
  avro-client               run an avro Flume client           运行一个avro的flume客户端 
  version                   show Flume version info           展示当前Flume版本号

---------分割线

global options: 
  --conf,-c             use configs in directory                                           指定对应的配置文件目录 
  --classpath,-C        append to the classpath                                                     指定classpath 
  --dryrun,-d                     do not actually start Flume, just print the command           只打印命令,不实际运行 
  --plugins-path      colon-separated list of plugins.d directories. See the        制定插件的classpath 
                            plugins.d section in the user guide for more details. 
                            Default: $FLUME_HOME/plugins.d 
  -Dproperty=value          sets a Java system property value                                     制定一个java系统属性的值 
  -Xproperty=value          sets a Java -X option                                                          设置一个java -X 的操作值

---------分割线

agent options:             
  --name,-n           the name of this agent (required)                                                      指定这个agent的名字 
  --conf-file,-f           specify a config file (required if -z missing)                                      指定一个配置文件 
  --zkConnString,-z    specify the ZooKeeper connection to use (required if -f missing)        指定这个zookeeper连接地址 
  --zkBasePath,-p     specify the base path in ZooKeeper for agent configs                        制定这个agent配置zookeeper的路径 
  --no-reload-conf                do not reload config file if changed                                                              如果发生变化的话,不加载配置内容 
  --help,-h                          display help text                                                                                   展示命令说明文档

---------分割线

avro-client options:                                                                                                     
  --rpcProps,-P          RPC client properties file with server connection params                    指定rpc连接的参数  
  --host,-H               hostname to which events will be sent                                                 指定avro服务hostname/ip 
  --port,-p                port of the avro source                                                                          指定avro服务的端口 
  --dirname

               directory to stream to avro source                                                        指定这个avro source 流的目录 
  --filename,-F           text file to stream to avro source (default: std input)                             指定avro srouce的text file流 
  --headerFile,-R        File containing event headers as key/value pairs on each new line      指定headerFile(key/value文件) 
  --help,-h                            display help text

  Either --rpcProps or both --host and --port must be specified. 

 

你可能感兴趣的:(搜索引擎)