AzkabanCLI
Project description
AzkabanCLI 
A lightweight Azkaban client providing:
A command line interface to run workflows, upload projects, etc.
A convenient and extensible way for building projects.
Sample
Below is a simple configuration file for a project containing a workflow with four pig scripts.
from azkaban import PigJob, Project
from getpass import getuser
PROJECT = Project('sample', root=__file__)
# default options for all jobs
DEFAULTS = {
'user.to.proxy': getuser(),
'param': {
'input_root': 'sample_dir/',
'n_reducers': 20,
},
'jvm.args.mapred': {
'max.split.size': 2684354560,
'min.split.size': 2684354560,
},
}
# list of pig job options
OPTIONS = [
{'pig.script': 'first.pig'},
{'pig.script': 'second.pig', 'dependencies': 'first.pig'},
{'pig.script': 'third.pig', 'param': {'foo': 48}},
{'pig.script': 'fourth.pig', 'dependencies': 'second.pig,third.pig'},
]
for option in OPTIONS:
PROJECT.add_job(option['pig.script'], PigJob(DEFAULTS, option))
The examples directory contains another sample project that uses Azkaban properties to build a project with two configurations: production and test, without any job duplication.
Documentation
The full documentation can be found here.
Installation
Using pip:
$ pip install azkaban
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
azkaban-0.6.11.tar.gz
(22.3 kB
view details)
File details
Details for the file azkaban-0.6.11.tar.gz.
File metadata
- Download URL: azkaban-0.6.11.tar.gz
- Upload date:
- Size: 22.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cafb5cb16cbfde1b230911572fa05e15d5e0400af6bb9211daa4b6ab9eba18a
|
|
| MD5 |
1ddaa5ac56b6bb113c3bcacecb1c4465
|
|
| BLAKE2b-256 |
be9c6fbdf31457d99f3b002fc253ced9e1e73f591244c904a61c5a96937b5da9
|