Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/codiepp/r_kafka
- Owner: CodiePP
- License: gpl-3.0
- Created: 2021-08-04T14:10:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-06T08:25:08.000Z (over 2 years ago)
- Last Synced: 2025-01-20T21:16:48.019Z (12 days ago)
- Topics: hacktoberfest, kafka, r
- Language: C++
- Homepage:
- Size: 39.1 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 .
```