Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cornelk/pulsar-go
Apache Pulsar Golang Client Library
https://github.com/cornelk/pulsar-go
event-streaming go golang messaging pubsub pulsar streaming
Last synced: 8 days ago
JSON representation
Apache Pulsar Golang Client Library
- Host: GitHub
- URL: https://github.com/cornelk/pulsar-go
- Owner: cornelk
- License: mit
- Created: 2020-04-21T10:40:14.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-26T15:12:36.000Z (4 months ago)
- Last Synced: 2024-10-16T12:26:27.584Z (20 days ago)
- Topics: event-streaming, go, golang, messaging, pubsub, pulsar, streaming
- Language: Go
- Homepage:
- Size: 206 KB
- Stars: 10
- Watchers: 2
- Forks: 2
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Apache Pulsar Golang Client Library
[![Build status](https://github.com/cornelk/pulsar-go/actions/workflows/go.yaml/badge.svg?branch=main)](https://github.com/cornelk/pulsar-go/actions)
[![go.dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat-square)](https://pkg.go.dev/github.com/cornelk/pulsar-go)
[![Go Report Card](https://goreportcard.com/badge/github.com/cornelk/pulsar-go)](https://goreportcard.com/report/github.com/cornelk/pulsar-go)
[![codecov](https://codecov.io/gh/cornelk/pulsar-go/branch/main/graph/badge.svg?token=NS5UY28V3A)](https://codecov.io/gh/cornelk/pulsar-go)An alternative Golang client library for the [Apache Pulsar](https://pulsar.apache.org/) project.
## Benefits over other Pulsar Go libraries
* Faster message processing
* Pure Golang, works without use of Cgo
* Idiomatic and cleaner Go
* Better stability
* Allows specifying of initial positions for topic pattern subscriptions
* Higher test coverage
* Pluggable logger interface## Status
The library is in an early state of development, the API is not stable yet.
Any help or input is welcome.## Alternative libraries
* [apache/pulsar-client-go](https://github.com/apache/pulsar-client-go)
the official Golang Client that inspired the creation of this alternative Client.* [apache/pulsar/pulsar-client-go](https://github.com/apache/pulsar-client-go)
Cgo based Client library that will be deprecated.* [Comcast/pulsar-client-go](https://github.com/Comcast/pulsar-client-go)
an older Client that appears to not be maintained anymore and lacking features like Batching.