1.验证wokflow.xml
oozie validate /appcom/apps/hduser0401/mbl_webtrends/workflow.xml 

2.提交作业,作业进入PREP状态 
oozie job -oozie http://localhost:11000/oozie -config job.properties -submit 
job: 14-20090525161321-oozie-joe

3.执行已提交的作业

oozie job -oozie

http://localhost:11000/oozie -start 14-20090525161321-oozie-joe

查看oozie服务状态:

oozie  admin -oozie http://localhost:11000/oozie -status

4.直接运行作业 
oozie job -oozie http://localhost:11000/oozie -config job.properties -run

#-D job_start=2016-11-10T02:00+0800 -- 起始日期(当天)
#-D job_end=2016-11-11T02:00+0800 -- 结束日期(当天+1)

5.挂起作业,挂起前状态(RUNNING , RUNNIINGWITHERROR or PREP状态) 
workflow job will be in SUSPENDED status.

6.杀死作业 
oozie job -oozie http://localhost:11000/oozie -kill 14-20090525161321-oozie-joe

7.改变作业参数,不能修改killed状态的作业 
oozie job -oozie http://localhost:11000/oozie -change 14-20090525161321-oozie-joe -value endtime=2011-12-01T05:00Z;concurrency=100;2011-10-01T05:00Z

8.重新运行作业 
oozie job -oozie http://localhost:11000/oozie -config job.properties -rerun 14-20090525161321-oozie-joe 
000000-130817230824019-oozie-ceny-W 
Rerunning a Coordinator Action or Multiple Actions 
$oozie job -rerun <coord_Job_id> [-nocleanup] [-refresh] 
[-action 1, 3-4, 7-40] (-action or -date is required to rerun.) 
[-date 2009-01-01T01:00Z::2009-05-31T23:59Z, 2009-11-10T01:00Z, 2009-12-31T22:00Z] 
Rerunning a Bundle Job 
oozie job -rerun <bundle_Job_id> [-nocleanup] [-refresh] 
[-coordinator c1, c3, c4] (-coordinator or -date is required to rerun.) 
[-date 2009-01-01T01:00Z::2009-05-31T23:59Z, 2009-11-10T01:00Z, 2009-12-31T22:00Z] 
(if neither -coordinator nor -date is given, the exception will be thrown.)

9.检查作业状态 
oozie job -oozie http://localhost:11000/oozie -info 14-20090525161321-oozie-joe

oozie job -oozie http://localhost:11000/oozie -info 0000001-111219170928042-oozie-para-W@mr-node -verbose

10.查看日志 
oozie job -oozie http://localhost:11000/oozie -log 14-20090525161321-oozie-joe 
oozie job -log <coord_job_id> [-action 1, 3-4, 7-40] (-action is optional.)

11.提交pig作业 
oozie pig -oozie http://localhost:11000/oozie -file pigScriptFile -config job.properties -X -param_file params

12.提交MR作业 
oozie mapreduce -oozie http://localhost:11000/oozie -config job.properties

usage: 
      the env variable 'OOZIE_URL' is used as default value for the '-oozie' option 
      the env variable 'OOZIE_TIMEZONE' is used as default value for the '-timezone' option 
      custom headers for Oozie web services can be specified using '-Dheader:NAME=VALUE'      oozie help : display usage 

      oozie version : show client version 

      oozie job <OPTIONS> : job operations 
                -action <arg>         coordinator rerun on action ids (requires -rerun); coordinator log retrieval on action ids (requires -log) 
                -auth <arg>           select authentication type [SIMPLE|KERBEROS] 
                -change <arg>         change a coordinator/bundle job 
                -config <arg>         job configuration file '.xml' or '.properties' 
                -D <property=value>   set/override value for given property 
                -date <arg>           coordinator/bundle rerun on action dates (requires -rerun) 
                -definition <arg>     job definition 
                -doas <arg>           doAs user, impersonates as the specified user 
                -dryrun               Dryrun a workflow (since 3.3.2) or coordinator (since 2.0) job without actually executing it 
                -info <arg>           info of a job 
                -kill <arg>           kill a job 
                -len <arg>            number of actions (default TOTAL ACTIONS, requires -info) 
                -localtime            use local time (same as passing your time zone to -timezone). 
                                      Overrides -timezone option 
                -log <arg>            job log 
                -nocleanup            do not clean up output-events of the coordinator rerun actions 
                                      (requires -rerun) 
                -offset <arg>         job info offset of actions (default '1', requires -info) 
                -oozie <arg>          Oozie URL 
                -refresh              re-materialize the coordinator rerun actions (requires -rerun) 
                -rerun <arg>          rerun a job  (coordinator requires -action or -date; bundle requires -coordinator or -date) 
                -resume <arg>         resume a job 
                -run                  run a job 
                -start <arg>          start a job 
                -submit               submit a job 
                -suspend <arg>        suspend a job 
                -timezone <arg>       use time zone with the specified ID (default GMT). 
                                      See 'oozie info -timezones' for a list 
                -value <arg>          new endtime/concurrency/pausetime value for changing a 
                                      coordinator job; new pausetime value for changing a bundle job 
                -verbose              verbose mode 

      oozie jobs <OPTIONS> : jobs status 
                 -auth <arg>          select authentication type [SIMPLE|KERBEROS] 
                 -doas <arg>          doAs user, impersonates as the specified user.
                 -filter <arg>        user=<U>;name=<N>;group=<G>;status=<S>;... 
                 -jobtype <arg>       job type ('Supported in Oozie-2.0 or later versions ONLY - coordinator' or 'wf' (default)) 
                 -len <arg>           number of jobs (default '100') 
                 -localtime           use local time (same as passing your time zone to -timezone). Overrides -timezone option 
                 -offset <arg>        jobs offset (default '1') 
                 -oozie <arg>         Oozie URL 
                 -timezone <arg>      use time zone with the specified ID (default GMT). See 'oozie info -timezones' for a list 
                 -verbose             verbose mode 

      oozie admin <OPTIONS> : admin operations 
                  -auth <arg>         select authentication type [SIMPLE|KERBEROS] 
                  -doas <arg>         doAs user, impersonates as the specified user.
                  -oozie <arg>        Oozie URL 
                  -queuedump          show Oozie server queue elements 
                  -status             show the current system status 
                  -systemmode <arg>   Supported in Oozie-2.0 or later versions ONLY. Change oozie 
                                      system mode [NORMAL|NOWEBSERVICE|SAFEMODE] 
                  -version            show Oozie server build version 

      oozie validate <ARGS> : validate a workflow XML file 

      oozie sla <OPTIONS> : sla operations (Supported in Oozie-2.0 or later) 
                -auth <arg>           select authentication type [SIMPLE|KERBEROS] 
                -len <arg>            number of results (default '100', max limited by oozie server setting which defaults to '1000') 
                -offset <arg>         start offset (default '0') 
                -oozie <arg>          Oozie URL 
                -filter <arg>         jobid=<JobID/ActionID>\;appname=<Application Name> 

      oozie pig <OPTIONS> -X <ARGS> : submit a pig job, everything after '-X' are pass-through parameters to pig 
                -auth <arg>           select authentication type [SIMPLE|KERBEROS] 
                -doas <arg>           doAs user, impersonates as the specified user.
                -config <arg>         job configuration file '.properties' 
                -D <property=value>   set/override value for given property 
                -file <arg>           Pig script 
                -oozie <arg>          Oozie URL 

      oozie info <OPTIONS> : get more detailed info about specific topics 
                -timezones   display a list of available time zones

oozie 常用命令的更多相关文章

  1. Oozie命令行常用命令汇总[转]

    Oozie命令行常用命令汇总 有时候脚本跑多了就不愿意在OozieWeb端去看脚本的运行情况了.还好Oozie提供了很多命令行命令.能通过命令行直接检索自己想看到的脚本信息.在这里简单进行一下总结.一 ...

  2. hadoop伪分布模式的配置和一些常用命令

    大数据的发展历史 3V:volume.velocity.variety(结构化和非结构化数据).value(价值密度低) 大数据带来的技术挑战 存储容量不断增加 获取有价值的信息的难度:搜索.广告.推 ...

  3. Linux 常用命令(持续补充)

    常用命令: command &:将进程放在后台执行 ctrl + z:暂停当前进程 并放入后台 jobs:查看当前后台任务 bg( %id):将任务转为后台执行 fg( %id):将任务调回前 ...

  4. LVM基本介绍与常用命令

    一.LVM介绍LVM是 Logical Volume Manager(逻辑卷管理)的简写,它是Linux环境下对磁盘分区进行管理的一种机制LVM - 优点:LVM通常用于装备大量磁盘的系统,但它同样适 ...

  5. Linux学习笔记(一):常用命令

    经过统计Linux中能够识别的命令超过3000种,当然常用的命令就远远没有这么多了,按照我的习惯,我把已经学过的Linux常用命令做了以下几个方面的分割: 1.文件处理命令 2.文件搜索命令 3.帮助 ...

  6. git常用命令(持续更新中)

    git常用命令(持续更新中) 本地仓库操作git int                                 初始化本地仓库git add .                       ...

  7. 【原】npm 常用命令详解

    今年上半年在学习gulp的使用,对npm的掌握是必不可少的,经常到npm官网查询文档让我感到不爽,还不如整理了一些常用的命令到自己博客上,于是根据自己的理解简单翻译过来,终于有点输出,想学习npm这块 ...

  8. npm常用命令

    npm常用命令 环境:win7 npm 是什么 NPM(node package manager),通常称为node包管理器.顾名思义,它的主要功能就是管理node包,包括:安装.卸载.更新.查看.搜 ...

  9. Git 常用命令

    一.初始環境配置 git config --global user.name "John Doe"git config --global user.email johndoe@ex ...

随机推荐

  1. css 进度条

    <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8&quo ...

  2. 使用influx控制台工具操作InfluxDB

    这里记录下influx控制台的简单使用,如需更多功能请参考InfluxDB官方文档: https://docs.influxdata.com/influxdb/v1.1/ 环境: CentOS6.5_ ...

  3. insert-interval 插入区间

    Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessa ...

  4. oracle数据库,怎么给已有数据的表添加自增字段

    场景:数据仓库,ODI为使用Oracle Incremental Update IKM,需要对一事实表增加主键. 思想:基于老表创建新表,添加自增字段(序列+触发器实现),把老数据导入新表,删除老表, ...

  5. PRM路径规划算法

    路径规划作为机器人完成各种任务的基础,一直是研究的热点.研究人员提出了许多规划方法:如人工势场法.单元分解法.随机路标图(PRM)法.快速搜索树(RRT)法等.传统的人工势场.单元分解法需要对空间中的 ...

  6. java第三节 面向对象(上)

    //第三讲 //面向对象(上) /* 理解面向对象的概念 面向过程 在一个结构体中定义窗体的大小,位置,颜色,背景等属性,对窗口操作的函数窗口本身的定义没有任何关系 如HideWindow, Move ...

  7. Android拦截外拨电话

    拦截监听外拨的电话,并进行处理: 向外拨打电话时系统会发出一个有序广播,虽然该广播最终会被拔号器里的广播接收者所接收并实现电话拔打,但我们可以在广播传递给拔号广播接收者之前先得到该广播,然后清除传递给 ...

  8. android中执行(定时任务)的方法及6位随机码的产生

    在网上看了很多类似的文章,比较乱,自己总结了一下,在开发中,常见的执行定时任务的方法有以下几种, 很简单的描述,有什么不懂可以留言,下面来介绍一下这几种常见的方法: 1.直接在线程中睡觉的方法,这个比 ...

  9. ios中core Plot (2)

    #import "ViewController.h" @interface ViewController () //指定要画得view @property(nonatomic,as ...

  10. (转载)JWebUnit做Web项目自动化测试

    原址:http://blog.csdn.net/plainfield/archive/2007/07/02/1675546.aspx JwebUnit加构在HttpUnit上,实际上也可以这么说是Ht ...