AzkabanCLI: a lightweight command line interface for Azkaban.
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 three jobs:
from azkaban import Job, Project
from getpass import getuser
PROJECT = Project('sample')
# properties available to all jobs
PROJECT.properties = {
'user.to.proxy': getuser(),
}
# dictionary of jobs
JOBS = {
'first': Job({'type': 'command', 'command': 'echo "Hello"'}),
'second': Job({'type': 'command', 'command': 'echo "World"'}),
'third': Job({'type': 'noop', 'dependencies': 'first,second'}),
}
for name, job in JOBS.items():
PROJECT.add_job(name, job)
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.34.tar.gz
(29.0 kB
view details)
File details
Details for the file azkaban-0.6.34.tar.gz.
File metadata
- Download URL: azkaban-0.6.34.tar.gz
- Upload date:
- Size: 29.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7a2ee599022df3c5e8f0b8176dde7a07af419359bc1a38b737129fa2c6499ae
|
|
| MD5 |
c6bafb134d58d175d8bc5b36d50e020e
|
|
| BLAKE2b-256 |
04982709737fe0a5a07f0954eddc2c7bae7ae178acc7a9c5d72a4c0798ca6258
|