azkaban基础操作

来源:互联网 发布:超级玛丽 跳跃算法 编辑:程序博客网 时间:2024/06/16 15:34

步骤:
1、新建job文件
2、将job资源文件打包成zip文件
3、创建project
4、上传zip文件
5、执行Execute Flow -> execute

简单命令

command.job

#command.jobtype=commandcommand=echo 'hello'

打包command.job

工作流

step1.job

# step1.jobtype=commandcommand=echo one

step2.job

# step2.jobtype=commanddependencies=step1command=echo two

打包step1.job与step2.job

mapreduce

wc.job

# wc.jobtype=commandcommand=hadoop  jar wc.jar xxx.wordcount /input/wordcount /ouput/wordcount

打包 wc.job 与 wc.jar

hive

hive.job

# hive.jobtype=commandcommand=hive -f 'test.sql'

test.sql

use test;drop table if exists test;create table test(id int,name string) row format delimited fields terminated by ',';load data local inpath 'test.txt' into table aztest;

test.txt

1,java2,scala3,hadoop4,spark

打包这3个文件

原创粉丝点击