# Apache Kafka vs ZeroMQ

| Attribute | Apache Kafka | ZeroMQ |
|---|---|---|
| **Vioscale score** | 60.1 (51% (medium)) | 59.6 (48% (low)) |
| activity.commits_last_30d | 100 | 19 |
| adoption.dependent_repos | 1 | 2,003 |
| adoption.github_stars | 33,629 | 10,972 |
| adoption.package_downloads_weekly | 5,508,093 | 25,005,888 |
| deployment.options | `{"self_hosted":true}` | `{"self_hosted":true}` |
| description.long | Apache Kafka is a free system for capturing, storing, and processing data streams in real time. It enables organizations to reliably move large volumes of data between applications and systems, with support for transformations, aggregations, and stateful processing. | ZeroMQ is a messaging library that enables asynchronous communication through socket abstractions, supporting multiple communication patterns, message subscriptions, and access to various transport protocols. |
| features.capabilities | `{"hosting":"self","ordering":"per_partition","paradigm":"pubsub","protocol":"Binary over TCP (SSL/SASL for authentication/encryption)","message_replay":true,"persistent_log":true,"consumer_groups":true,"geo_replication":true,"kafka_compatible":true,"managed_offering":false,"stream_processing":true,"delivery_guarantee":"exactly_once","horizontal_scaling":true}` | `{"hosting":"self","paradigm":"pubsub","protocol":"ZMTP/3.1","managed_offering":false}` |
| integrations.count | 4 | 11 |
| integrations.list | `[{"name":"Postgres"},{"name":"JMS"},{"name":"Elasticsearch"},{"name":"AWS S3"}]` | `[{"name":"Microsoft"},{"name":"Samsung"},{"name":"AT&T"},{"name":"Spotify"},{"name":"Facebook"},{"name":"Digital Ocean"},{"name":"Auth0"},{"name":"Bitcoin"},{"name":"Jupyter"},{"name":"Mongrel2"},{"name":"Jina"}]` |
| language.primary | Java | C++ |
| license.spdx | Apache-2.0 | MPL-2.0 |
| market.availability | `{"primaryMarkets":[],"availabilityScope":"global","availableCountries":[],"notAvailableCountries":[]}` | - |
| platform.support | `{"cli":true,"linux":true}` | `{"mac":true,"linux":true,"android":true,"windows":true}` |
| pricing | `{"type":"open_source","freeTier":true,"sourceUrl":"https://kafka.apache.org","retrievedAt":"2026-08-14T11:04:16.831Z"}` | `{"type":"open_source","freeTier":true,"sourceUrl":"https://zeromq.org","retrievedAt":"2026-08-14T11:07:53.298Z"}` |
| pricing.free_tier | yes | yes |
| pricing.model | open_source | open_source |
| pricing.price_level | free | free |
| pricing.transparent | - | yes |
| release.cadence_days | - | 114 |
| release.history | - | `[{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.3.5","date":"2023-10-09T11:17:14Z","type":"stable","version":"v4.3.5"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.3.4","date":"2021-01-17T13:23:31Z","type":"stable","version":"v4.3.4"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.3.3","date":"2020-09-07T16:26:42Z","type":"stable","version":"v4.3.3"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.3.2","date":"2019-07-08T16:22:37Z","type":"stable","version":"v4.3.2"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.3.1","date":"2019-01-12T16:21:50Z","type":"stable","version":"v4.3.1"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.3.0","date":"2018-11-28T20:16:09Z","type":"stable","version":"v4.3.0"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.2.5","date":"2018-03-23T19:37:59Z","type":"stable","version":"v4.2.5"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.2.4","date":"2018-03-21T16:03:32Z","type":"stable","version":"v4.2.4"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.2.3","date":"2017-12-13T13:41:38Z","type":"stable","version":"v4.2.3"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.2.2","date":"2017-02-18T18:09:59Z","type":"stable","version":"v4.2.2"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.2.1","date":"2016-12-31T15:30:03Z","type":"stable","version":"v4.2.1"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.2.0","date":"2016-11-04T10:33:51Z","type":"stable","version":"v4.2.0"},{"url":"https://github.com/zeromq/libzmq/releases/tag/v4.2.0-rc1","date":"2016-11-01T15:31:54Z","type":"prerelease","version":"v4.2.0-rc1"}]` |
| security.scorecard | 6.1 | 5.7 |
| security.vulnerabilities | `{"count":0,"source":"https://advisories.ecosyste.ms/api/v1/advisories?ecosystem=go&package_name=github.com%2Fapache%2Fkafka&per_page=100","last_12m":0,"max_severity":null}` | `{"count":0,"source":"https://advisories.ecosyste.ms/api/v1/advisories?ecosystem=conda&package_name=zeromq&per_page=100","last_12m":0,"max_severity":null}` |

## Capabilities (Message Queues)

| Capability | Apache Kafka | ZeroMQ |
|---|:--:|:--:|
| **Core** |  |  |
| Messaging paradigm | Pub/sub | Pub/sub |
| **Correctness** |  |  |
| Delivery guarantee | Exactly-once | - |
| Ordering guarantee | Per-partition | - |
| **Durability** |  |  |
| Durable replayable log | ✓ | - |
| Message replay / rewind | ✓ | - |
| **Interop** |  |  |
| Wire protocol | Binary over TCP (SSL/SASL for authentication/encryption) | ZMTP/3.1 |
| Kafka-protocol compatible | ✓ | - |
| **Scale** |  |  |
| Partitioned horizontal scaling | ✓ | - |
| Geo / cross-region replication | ✓ | - |
| **Consumption** |  |  |
| Consumer groups / competing consumers | ✓ | - |
| Dead-letter queue | - | - |
| **Deployment** |  |  |
| Managed cloud offering exists | ✗ | ✗ |
| Hosting | Self-hosted only | Self-hosted only |
| **Processing** |  |  |
| Built-in stream processing | ✓ | - |

*Source: Vioscale. Generated 2026-09-01T15:04:55.336Z. "-" = undocumented, not absent.*
