https://github.com/codiepp/r_kafka
Interfacing R and Apache Kafka
https://github.com/codiepp/r_kafka
hacktoberfest kafka r
Last synced: 5 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 (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-06T08:25:08.000Z (about 3 years ago)
- Last Synced: 2025-03-07T18:04:58.653Z (4 months ago)
- Topics: hacktoberfest, kafka, r
- Language: C++
- Homepage:
- Size: 39.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rkafka
Interfacing R and Apache Kafka[](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 .
```