Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/janheinrichmerker/hadoop-ktx

💾 Kotlin Extensions for Apache Hadoop (MapReduce).
https://github.com/janheinrichmerker/hadoop-ktx

hadoop hadoop-ktx hadoop-mapreduce kotlin kotlin-extensions kotlin-jvm kotlin-library

Last synced: about 1 month ago
JSON representation

💾 Kotlin Extensions for Apache Hadoop (MapReduce).

Awesome Lists containing this project

README

        

[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/heinrichreimer/hadoop-ktx/ci.yml?branch=master&style=flat-square)](https://github.com/heinrichreimer/hadoop-ktx/actions/workflows/ci.yml)
[![JitPack](https://img.shields.io/jitpack/v/github/heinrichreimer/hadoop-ktx?style=flat-square)](https://jitpack.io/#dev.reimer/hadoop-ktx)

# 💾 hadoop-ktx[α](#status-α)

Kotlin extensions for [Apache Hadoop](https://hadoop.apache.org/) (unofficial).

## Gradle Dependency

This library is available on [**jitpack.io**](https://jitpack.io/#dev.reimer/hadoop-ktx).
Add this in your `build.gradle.kts` or `build.gradle` file:

Kotlin

```kotlin
repositories {
maven("https://jitpack.io")
}

dependencies {
implementation("dev.reimer:hadoop-ktx:")
}
```

Groovy

```groovy
repositories {
maven { url 'https://jitpack.io' }
}

dependencies {
implementation 'dev.reimer:hadoop-ktx:'
}
```

## Status α

⚠️ _Warning:_ This project is in an experimental alpha stage:
- The API may be changed at any time without further notice.
- Development still happens on `master`.
- Pull Requests are highly appreciated!