{"id":13466903,"url":"https://github.com/azkaban/azkaban","last_synced_at":"2025-05-14T01:03:09.068Z","repository":{"id":5107480,"uuid":"6271421","full_name":"azkaban/azkaban","owner":"azkaban","description":"Azkaban workflow manager.","archived":false,"fork":false,"pushed_at":"2024-07-03T06:07:59.000Z","size":57554,"stargazers_count":4490,"open_issues_count":802,"forks_count":1588,"subscribers_count":249,"default_branch":"master","last_synced_at":"2025-04-02T01:09:42.984Z","etag":null,"topics":["azkaban","hacktoberfest","scheduling","workflow-engine"],"latest_commit_sha":null,"homepage":"https://azkaban.github.io","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"Q42/AndroidScrollingImageView","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/azkaban.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-10-18T01:34:53.000Z","updated_at":"2025-03-21T15:16:32.000Z","dependencies_parsed_at":"2023-01-14T11:31:01.673Z","dependency_job_id":"e684262b-3773-4c5e-8ce3-f7f1f2ead252","html_url":"https://github.com/azkaban/azkaban","commit_stats":{"total_commits":2517,"total_committers":164,"mean_commits":"15.347560975609756","dds":0.8792212951926897,"last_synced_commit":"792679b74fd48327c6b68e91f977369496442f47"},"previous_names":["azkaban/azkaban2"],"tags_count":168,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkaban%2Fazkaban","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkaban%2Fazkaban/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkaban%2Fazkaban/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azkaban%2Fazkaban/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azkaban","download_url":"https://codeload.github.com/azkaban/azkaban/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247962460,"owners_count":21024862,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azkaban","hacktoberfest","scheduling","workflow-engine"],"created_at":"2024-07-31T15:00:51.207Z","updated_at":"2025-04-09T02:11:05.283Z","avatar_url":"https://github.com/azkaban.png","language":"Java","funding_links":[],"categories":["Java","Data Pipeline","Data Workflow","Building","hacktoberfest","Projects","Software","Data Processing"],"sub_categories":["Workflows","Workflow Engine","Managing building models"],"readme":"# Azkaban \n\n[![Build Status](https://travis-ci.com/azkaban/azkaban.svg?branch=master)](https://travis-ci.com/azkaban/azkaban)[![codecov.io](https://codecov.io/github/azkaban/azkaban/branch/master/graph/badge.svg)](https://codecov.io/github/azkaban/azkaban)[![Join the chat at https://gitter.im/azkaban-workflow-engine/Lobby](https://badges.gitter.im/azkaban-workflow-engine/Lobby.svg)](https://gitter.im/azkaban-workflow-engine/Lobby?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)[![Documentation Status](https://readthedocs.org/projects/azkaban/badge/?version=latest)](https://azkaban.readthedocs.org/en/latest/?badge=latest)\n\n\n## Build\nAzkaban builds use Gradle and requires Java 8 or higher.\n\nThe following set of commands run on *nix platforms like Linux, OS X.\n\n```\n# Build Azkaban\n./gradlew build\n\n# Clean the build\n./gradlew clean\n\n# Build and install distributions\n./gradlew installDist\n\n# Run tests\n./gradlew test\n\n# Build without running tests\n./gradlew build -x test\n```\n\n### Build a release\n\nPick a release from [the release page](https://github.com/azkaban/azkaban/releases). \nFind the tag corresponding to the release.\n\nCheck out the source code corresponding to that tag.\ne.g.\n\n`\ngit checkout 3.30.1\n`\n\nBuild \n```\n./gradlew clean build\n```\n\n## Documentation\n\nThe current documentation will be deprecated soon at [azkaban.github.io](https://azkaban.github.io). \nThe [new Documentation site](https://azkaban.readthedocs.io/en/latest/) is under development.\nThe source code for the documentation is inside `docs` directory.\n\nFor help, please visit the [Azkaban Google Group](https://groups.google.com/forum/?fromgroups#!forum/azkaban-dev).\n\n## Developer Guide\n\nSee [the contribution guide](https://github.com/azkaban/azkaban/blob/master/CONTRIBUTING.md).\n\n#### Documentation development\n\nIf you want to contribute to the documentation or the release tool (inside the `tools` folder), \nplease make sure python3 is installed in your environment. python virtual environment is recommended to run these scripts.\n\nTo create a venv \u0026 install the python3 dependencies inside it, run\n\n```bash\npython3 -m venv venv\nsource venv/bin/activate\npip3 install -r requirements.txt\n```\nAfter, enter the documentation folder `docs` and make the build by running\n```bash\ncd docs\nmake html\n```\n\nFind the built docs under `_build/html/`.\n\nFor example on a Mac, open them in browser with:\n\n```bash\nopen -a \"Google Chrome\" _build/html/index.html\n```\n\n**[July, 2018]** We are actively improving our documentation. Everyone in the AZ community is \nwelcome to submit a pull request to edit/fix the documentation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazkaban%2Fazkaban","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazkaban%2Fazkaban","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazkaban%2Fazkaban/lists"}