Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/codiepp/r_kafka

Interfacing R and Apache Kafka
https://github.com/codiepp/r_kafka

hacktoberfest kafka r

Last synced: 12 days ago
JSON representation

Interfacing R and Apache Kafka

Awesome Lists containing this project

README

        

# rkafka
Interfacing R and Apache Kafka

[![compile-R-package](https://github.com/CodiePP/r_kafka/actions/workflows/check-standard.yaml/badge.svg?branch=main)](https://github.com/CodiePP/r_kafka/actions/workflows/check-standard.yaml)

## build

```sh
Rscript prepare.R
R CMD build .
```

this results in a .tar.gz which can then be installed:

```sh
R CMD INSTALL rkafka_1.0.tar.gz
```

## testing

```R
library(rkafka)
rkafka::kafka_version()
```

## development

```sh
Rscript prepare.R
R CMD check .
```