Kettle 运行 在 windows 上使用命令
Kettle running on windows with commands
我在 windows 系统上使用 Kettle 运行ning 和命令
我的代码:
C:\Users\Administrator>F:\data-integration\pan.bat /file F:\data-integration/repository/test/test.ktr /param:test=pp
当我添加 /param:test=pp
有问题:
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/F:/data-integration/launcher/../lib/slf4j-log
4j12-1.7.7.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/F:/data-integration/plugins/pentaho-big-data-
plugin/lib/slf4j-log4j12-1.7.7.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
2019/04/28 17:44:11 - Pan - ERROR (version 8.3.0.0-211, build 8.3.0.0-211 from 2
019-03-12 03.40.41 by Administrator) : Command Line Options
我已经在test.ktr设置了测试参数,但是还是不能运行
就个人而言,我将此模板用于批处理文件
C:
cd\Pentaho\design-tools\data-integration\
Pan.bat -file:C:/foo/bar/your.ktr "-param:test=pp"
我通常将 param:[name]=[value] 子句括在引号中,因为在 PDI Windows 中,您正在使用多平台系统,您是 运行 Windows 命令将登陆 Unix VM(Java VM),因此必须省略斜杠、正斜杠和其他控制字符。
我唯一没有用引号引起来的命令是 -file。
如果您使用的是直接来自 CMD 的命令,请记住您需要导航到数据集成文件夹才能使用命令调用 Pan / Kitchen。
我在 windows 系统上使用 Kettle 运行ning 和命令 我的代码:
C:\Users\Administrator>F:\data-integration\pan.bat /file F:\data-integration/repository/test/test.ktr /param:test=pp
当我添加 /param:test=pp
有问题:
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/F:/data-integration/launcher/../lib/slf4j-log
4j12-1.7.7.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/F:/data-integration/plugins/pentaho-big-data-
plugin/lib/slf4j-log4j12-1.7.7.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [org.slf4j.impl.Log4jLoggerFactory]
2019/04/28 17:44:11 - Pan - ERROR (version 8.3.0.0-211, build 8.3.0.0-211 from 2
019-03-12 03.40.41 by Administrator) : Command Line Options
我已经在test.ktr设置了测试参数,但是还是不能运行
就个人而言,我将此模板用于批处理文件
C:
cd\Pentaho\design-tools\data-integration\
Pan.bat -file:C:/foo/bar/your.ktr "-param:test=pp"
我通常将 param:[name]=[value] 子句括在引号中,因为在 PDI Windows 中,您正在使用多平台系统,您是 运行 Windows 命令将登陆 Unix VM(Java VM),因此必须省略斜杠、正斜杠和其他控制字符。
我唯一没有用引号引起来的命令是 -file。
如果您使用的是直接来自 CMD 的命令,请记住您需要导航到数据集成文件夹才能使用命令调用 Pan / Kitchen。