我在c:\ hadoop2.5.2中安装hadoop,然后在c:\ hadop2.5.2 \ apache-flume-1.6.0下解压出水槽二进制文件。
C:\hadoop2.5.2\apache-flume-1.6.0\bin>flume-ng agent -conf -f conf/flume-twitter.conf -Dflume.root.logger=DEBUG,console -n TwitterAgent
C:\hadoop2.5.2\apache-flume-1.6.0\bin>powershell.exe -NoProfile -InputFormat none -ExecutionPolicy unrestricted -File C:\hadoop2.5.2\apache-
flume-1.6.0\bin\flume-ng.ps1 agent -conf -f conf/flume-twitter.conf -Dflume.root.logger=DEBUG,console -n TwitterAgent
C:\hadoop2.5.2\apache-flume-1.6.0\bin\flume-ng.ps1 : A parameter cannot be found that matches parameter name 'Dflume.root.logger=DEBUG,cons
ole'.
At line:0 char:1
+ <<<<
+ CategoryInfo : InvalidArgument: (:) [flume-ng.ps1], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : NamedParameterNotFound,flume-ng.ps1
C:\hadoop2.5.2\apache-flume-1.6.0\bin>
我已经在flume.sh中设置了参数
export JAVA_HOME=C:\Java\jdk1.7.0_79\
# Give Flume more memory and pre-allocate, enable remote monitoring via JMX
export JAVA_OPTS="-Xms100m -Xmx2000m -Dcom.sun.management.jmxremote"
# Note that the Flume conf directory is always included in the classpath.
FLUME_CLASSPATH="C:\hadoop2.5.2\apache-flume-1.6.0\lib\flume-sources-1.0-SNAPSHOT.jar"
请大家知道如何解决这个问题?
最佳答案
我也遇到了同样的问题。 Flume网站上的文档似乎已过时。这是我尝试过的示例,它对我有用。
bin\flume-ng agent -conf conf -conf-file conf/flume-conf.properties --name agent1 -property "flume.root.logger=INFO,console"
用-property替换-D
Let reference source code of Apache Flume on the Github。从第20行开始。
因此,您应该尝试:
bin\flume-ng agent -conf -f conf/flume-twitter.conf -property "flume.root.logger=INFO,console" -n TwitterAgent
关于hadoop - 关于如何在Windows中使用hadoop安装水槽的任何想法吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35067940/