zoukankan      html  css  js  c++  java
  • Kettle的Kitchen和Span

     Kitchen——工作(job)执行器 (命令行方式)

        -rep  : Repository name   任务包所在存储名
        -user  : Repository username   执行人
        -pass  : Repository password   执行人密码
        -job   : The name of the job to launch 任务包名称
        -dir   : The directory (don''t forget the leading / or ) 
        -file  : The filename (Job XML) to launch 
        -level  : The logging level (Basic, Detailed, Debug, Rowlevel, Error, Nothing) 指定日志级别
        -log   : The logging file to write to  指定日志文件
        -listdir  : List the directories in the repository 列出指定存储中的目录结构。
        -listjobs : List the jobs in the specified directory 列出指定目录下的所有任务
        -listrep  : List the defined repositories 列出所有的存储
        -norep  : Don''t log into the repository  不写日志

    1      命令行调度任务配置方式     转至kitchen.bat 所在根目录下,执行.kitchen /file C:UserslenovoDesktop extT.kjb /level:Rowlevel>>C:UserslenovoDesktop est.log

     2、后台进程配置运行方式

    新建bat 文件在文件中写

    @echo off

    if "%1" == "h" goto begin

    mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit

    :begin
    D:
    cd D:data-integration
    kitchen /file C:UserslenovoDesktop extT.kjb /level:Rowlevel>>C:UserslenovoDesktop est.log
    pause

     Span——转换(trasform)执行器 (命令行方式)

  • 相关阅读:
    2-3树
    B树
    负载均衡的算法种类
    String源码分析
    实现一个List集合中的某个元素的求和
    就是通过事件方法,在window.loaction.href里追加了参数字符串
    九大内置对象及四个域对象的总结
    BigDecimal add方法问题:调用add后,求和结果没变
    java中List元素移除元素的那些坑
    Java序列化和反序列化,你该知道得更多
  • 原文地址:https://www.cnblogs.com/xiayule/p/kitchen.html
Copyright © 2011-2022 走看看