Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/attomos/yarnlog
:yarn: Download Apache Hadoop YARN log to your local machine.
https://github.com/attomos/yarnlog
apache-hadoop-yarn command-line-tool hadoop resource-manager
Last synced: 16 days ago
JSON representation
:yarn: Download Apache Hadoop YARN log to your local machine.
- Host: GitHub
- URL: https://github.com/attomos/yarnlog
- Owner: attomos
- Created: 2020-11-22T17:02:54.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-27T23:01:28.000Z (about 4 years ago)
- Last Synced: 2024-11-23T16:19:00.442Z (3 months ago)
- Topics: apache-hadoop-yarn, command-line-tool, hadoop, resource-manager
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# yarnlog
[![Tests Status](https://github.com/attomos/yarnlog/workflows/Tests/badge.svg?branch=main&event=push)](https://github.com/attomos/yarnlog/actions?query=workflow%3ATests+branch%3Amain+event%3Apush)
[![codecov](https://codecov.io/gh/attomos/yarnlog/branch/main/graph/badge.svg?token=FQUPRYP17V)](https://codecov.io/gh/attomos/yarnlog)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/yarnlog)](https://pypi.org/project/yarnlog)Download Apache Hadoop YARN log to your local machine.
## Installation
```bash
$ pip install yarnlog
```## Usage
```bash
$ yarnlog
```## Development
### Set up development environment
I use Poetry to manage build process and dependencies.
```bash
$ poetry install
$ source $(poetry env info --path)/bin/activate
```### Debug yarnlog locally
```bash
$ poetry run yarnlog
```### Run tests
```bash
$ pytest# coverage
$ pytest --cov=yarnlog tests# coverage with html report
$ pytest --cov=yarnlog --cov-report html:htmlcov tests
```